Initial import

This commit is contained in:
Johnny Bergström
2005-04-29 22:47:00 +00:00
parent ebf0945c6e
commit 9d200888ff
8 changed files with 6338 additions and 0 deletions

19
dlls/metamapx/metamap.h Executable file
View File

@ -0,0 +1,19 @@
#include <vector>
#include "JBRandom.h"
#include "amxxmodule.h"
using namespace std;
enum SpaceContent {SPACE_EMPTY = 0, SPACE_WALL = 1};
typedef unsigned int UINT;
class CSpace
{
public:
CSpace(UINT columnIn, UINT lineIn) {column = columnIn; line = lineIn;}
UINT column, line;
};
// Globals
UINT COLUMNS, LINES;
AMX *g_amx;