Changeset 299 for trunk/UBuilding.pas
- Timestamp:
- Jul 10, 2019, 5:48:18 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UBuilding.pas
r297 r299 42 42 public 43 43 Kind: TBuildingKind; 44 procedure Assign(Source: TItem); override; 44 45 property MapCell: TObject read FMapCell write SetMapCell; // TMapCell; 45 46 end; … … 88 89 FMapCell := AValue; 89 90 if Assigned(FMapCell) then TCell(FMapCell).Building := Self; 91 end; 92 93 procedure TBuilding.Assign(Source: TItem); 94 begin 95 inherited; 96 Kind := TBuilding(Source).Kind; 90 97 end; 91 98
Note:
See TracChangeset
for help on using the changeset viewer.