XtreemNodes/include/Base.h

20 lines
253 B
C
Raw Normal View History

2023-09-23 23:19:52 +02:00
#ifndef BASE
#define BASE
#include "MapBlock.h"
class NodeManager;
class BlockManager;
extern NodeManager nodeManager;
extern BlockManager blockManager;
extern float light;
/*struct Position2D
{
int x;
int z;
};*/
#endif