A try at standardizing filenames' case in the Classic BoE branch (Win32), as described in the Issue 25.

(Game)

Chokboyz

git-svn-id: http://openexile.googlecode.com/svn/trunk@154 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
Chokboyz
2010-07-12 04:10:14 +00:00
parent 43152f7387
commit 3316b2e515
73 changed files with 835 additions and 7930 deletions

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