This commit is contained in:
Paul 2001-02-15 19:49:34 +00:00
parent 744c541a5a
commit c06ddfff74
4 changed files with 85 additions and 0 deletions

View file

@ -23,6 +23,7 @@ virtual ~CLayerCollision();
virtual void shutdown();
u8 Get(int X,int Y) {return(Map[X+(Y*MapWidth)]);}
int getHeightFromGround(int _x,int _y,int _maxHeight=32);
#ifdef __SHOW_COLLISION__
void render(DVECTOR &MapPos);
@ -35,6 +36,8 @@ protected:
u8 *Map;
u8 *m_collisionTable;
};