This commit is contained in:
Daveo 2001-08-14 17:07:16 +00:00
parent 6baaf136f5
commit fb2681fe0c
3 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,7 @@ virtual ~CLayerCollision();
virtual void shutdown();
u32 GetYPos(int Y) {return(ColYTable[Y+COL_Y_OFS]);}
int GetYPos(int Y) {return(ColYTable[Y+COL_Y_OFS]);}
int getHeightFromGround(int _x,int _y,int _maxHeight=32);
int getHeightFromGroundExcluding(int _x,int _y,int _exclusion,int _maxHeight=32);
@ -72,7 +72,7 @@ protected:
u8 *Map;
static u8 s_collisionTable[];
u32 *ColYTable;
int *ColYTable;
};