This commit is contained in:
parent
9af1eb0ad5
commit
0a22ec4675
20 changed files with 348 additions and 122 deletions
|
@ -46,6 +46,19 @@ bool operator==(sExpTile const &v1)
|
|||
}
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
struct sExpColTile
|
||||
{
|
||||
u8 Tile;
|
||||
u8 Flags;
|
||||
|
||||
bool operator==(sExpColTile const &v1)
|
||||
{
|
||||
return(Tile==v1.Tile && Flags==v1.Flags);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
struct sExpTri
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue