XtreemNodes/include/Base.h

20 lines
240 B
C
Raw Normal View History

2022-10-23 23:44:58 +02:00
#ifndef BASE
#define BASE
2022-10-22 17:03:43 +02:00
//#include "NodeRenderer.h"
2022-10-23 23:44:58 +02:00
//#include "MapBlock.h"
2022-10-22 17:03:43 +02:00
2022-10-23 23:44:58 +02:00
class NodeManager;
2022-10-29 05:47:09 +02:00
class BlockManager;
2022-10-22 17:03:43 +02:00
extern NodeManager nodeManager;
2022-10-29 05:47:09 +02:00
extern BlockManager blockManager;
2022-10-23 23:44:58 +02:00
2022-10-22 17:03:43 +02:00
2022-10-23 23:44:58 +02:00
struct Position2D
{
int x;
int z;
};
#endif