Changeset 170 for trunk/Forms/UFormNew.pas
- Timestamp:
- Nov 23, 2017, 5:02:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormNew.pas
r167 r170 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 ComCtrls, Spin, ExtCtrls, ActnList, ExtDlgs, Menus, UGame ;9 ComCtrls, Spin, ExtCtrls, ActnList, ExtDlgs, Menus, UGame, UGeometry; 10 10 11 11 type … … 363 363 Game.CityEnabled := CheckBoxCity.Checked; 364 364 Game.CityPercentage := SpinEditCityPercent.Value; 365 Game.Map.Size := Point(SpinEditMapSizeX.Value, SpinEditMapSizeY.Value);365 Game.Map.Size := TPoint.Create(SpinEditMapSizeX.Value, SpinEditMapSizeY.Value); 366 366 Game.GrowAmount := TGrowAmount(RadioGroupGrowAmount.ItemIndex); 367 367 Game.GrowCells := TGrowCells(RadioGroupGrowCells.ItemIndex);
Note:
See TracChangeset
for help on using the changeset viewer.