Files
oboe/Win32/Blades of Exile/LOCATION.H
2009-05-24 23:32:16 +00:00

25 lines
591 B
C

#ifndef _LOCATION_H
#define _LOCATION_H
struct location
{
char x, y;
/* functions */
location() : x(0), y(0) { }
location(int ix, int iy) { x = ix; y = iy; }
location toGlobal(); /* convert local coordinates to global*/
location toLocal(); /* convert global coordinates to local*/
location randomShift();
short countWalls() const; /* count number of walls around */
short handleLever(); /* call dialog and eventually pull lever */
void crumbleWall();
bool isDoor() const;
void pickLock(short pcNum);
void bashDoor(short pcNum);
};
#endif