This commit is contained in:
Daveo 2001-05-01 12:20:47 +00:00
parent bf6d4300c4
commit 17a78fdd73
2 changed files with 21 additions and 6 deletions

View file

@ -38,6 +38,9 @@ public:
sThingActor **getActorList() {return ActorList;}
int getPlatformCount() {return PlatformCount;}
sThingPlatform **getPlatformList() {return PlatformList;}
int getHazardCount() {return HazardCount;}
sThingHazard **getHazardList() {return HazardList;}
CLayerCollision *getCollisionLayer() {return CollisionLayer;}
DVECTOR getMapSize();
@ -70,6 +73,8 @@ private:
sThingTrigger *TriggerList;
int FXCount;
sThingFX *FXList;
int HazardCount;
sThingHazard **HazardList;
};