* Removed heContrns dependency (replaced by fgl ... again)

This commit is contained in:
2015-05-13 19:09:41 +02:00
parent d334728b6c
commit 1ddaee39d5
6 changed files with 8 additions and 7432 deletions

View File

@@ -30,7 +30,7 @@ unit UMap;
interface
uses
SysUtils, Classes, heContnrs, UWorldItem;
SysUtils, Classes, fgl, UWorldItem;
const
MapCellSize = 3;
@@ -60,7 +60,7 @@ type
procedure Write(AData: TStream); override;
end;
TMapCellList = specialize TheObjectVector<TMapCell>;
TMapCellList = specialize TFPGObjectList<TMapCell>;
{ TMapBlock }

View File

@@ -30,7 +30,7 @@ unit UStatics;
interface
uses
SysUtils, Classes, heContnrs, UGenericIndex, UWorldItem, UTiledata;
SysUtils, Classes, fgl, UGenericIndex, UWorldItem, UTiledata;
type
{ TStaticItem }
@@ -56,7 +56,7 @@ type
procedure Write(AData: TStream); override;
end;
TStaticItemList = specialize TheObjectVector<TStaticItem>;
TStaticItemList = specialize TFPGObjectList<TStaticItem>;
{ TStaticBlock}

View File

@@ -30,7 +30,7 @@ unit UWorldItem;
interface
uses
Classes, heContnrs, UMulBlock;
Classes, fgl, UMulBlock;
type
TWorldBlock = class;
@@ -81,7 +81,7 @@ type
property RawZ: ShortInt read FZ;
end;
TWorldItemList = specialize TheObjectVector<TWorldItem>;
TWorldItemList = specialize TFPGObjectList<TWorldItem>;
{ TWorldBlock }