2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-01-18 01:38:04 +03:00
Johnny Bergström 9d200888ff Initial import
2005-04-29 22:47:00 +00:00

20 lines
336 B
C++
Executable File

#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;