This commit is contained in:
Daveo 2001-04-07 21:05:33 +00:00
parent 08c732c29a
commit aefdd396f8
51 changed files with 1467 additions and 682 deletions

View file

@ -110,15 +110,26 @@ BOOL operator==(sExpMapElem const &v1)
/*****************************************************************************/
/*** Things ******************************************************************/
/*****************************************************************************/
struct sExpLayerThing
struct sLayerThingData
{
int Health;
int AttackStrength;
int WaypointCount;
int Speed;
int TurnRate;
int Health;
int AttackStrength;
bool CollisionFlag;
bool PlayerFlag;
int Spare[8];
// Platform
int MoveType;
int PlatformType;
// Boxes
int Width,Height;
// Spare
int Spare[4];
};
#endif