- Dev Mode i Game Mode
This commit is contained in:
@@ -2,9 +2,20 @@
|
||||
|
||||
namespace editor
|
||||
{
|
||||
static bool editing = true;
|
||||
static bool devMode = false;
|
||||
static bool editing = false;
|
||||
static int current_template = 0;
|
||||
|
||||
void setDevMode()
|
||||
{
|
||||
devMode = editing = true;
|
||||
}
|
||||
|
||||
const bool isDevMode()
|
||||
{
|
||||
return devMode;
|
||||
}
|
||||
|
||||
void setEditing(const bool value)
|
||||
{
|
||||
editing = value;
|
||||
|
||||
Reference in New Issue
Block a user