25 lines
566 B
C++
25 lines
566 B
C++
#pragma once
|
|
#include "DataModelInstance.h"
|
|
#include <G3DAll.h>
|
|
|
|
class Globals
|
|
{
|
|
public:
|
|
Globals(void);
|
|
~Globals(void);
|
|
static DataModelInstance* dataModel;
|
|
static bool showMouse;
|
|
static POINT mousepoint;
|
|
static bool useMousePoint;
|
|
static const int gen;
|
|
static const int major;
|
|
static const int minor;
|
|
static const int patch;
|
|
static G3D::TextureRef surface;
|
|
static int surfaceId;
|
|
static const std::string PlaceholderName;
|
|
};
|
|
|
|
extern std::vector<Instance*> postRenderStack;
|
|
extern std::vector<Instance*> g_selectedInstances;
|
|
extern bool running; |