This commit is contained in:
Daveo 2001-04-19 15:36:49 +00:00
parent 2feb81322e
commit 1626aebb17
5 changed files with 21 additions and 2 deletions

View file

@ -82,6 +82,9 @@ struct sExpLayerTile
u16 Tile;
u16 Flags;
// bool operator==(sExpLayerTile const &v1) {return (Tile==v1.Tile);}
//bool operator==(sExpLayerTile const &v1) {return (Tile==v1.Tile);}
bool operator ==(sExpLayerTile const &v1) {return(Tile==v1.Tile && Flags==v1.Flags);}
};