Rename windows directories to remove spaces. This backslash business is getting old.

This commit is contained in:
Sylae Jiendra Corell
2014-06-17 14:45:17 -06:00
parent 0233eed9d0
commit 06f6a57781
276 changed files with 0 additions and 0 deletions

24
game/classes/location.h Normal file
View File

@@ -0,0 +1,24 @@
#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