This commit is contained in:
Paul 2001-02-13 16:45:31 +00:00
parent 294a09d2ff
commit c03dc8b558

View file

@ -7,6 +7,12 @@
#include <dstructs.h>
#ifdef __VERSION_debug__
#define __SHOW_COLLISION__
#endif
/*****************************************************************************/
class CLayerCollision
{
@ -18,6 +24,11 @@ virtual void shutdown();
u8 Get(int X,int Y) {return(Map[X+(Y*MapWidth)]);}
#ifdef __SHOW_COLLISION__
void render(DVECTOR &MapPos);
#endif
protected:
sLayerHdr *LayerHdr;
int MapWidth,MapHeight;