Files
thepool/source/editor.cpp

17 lines
214 B
C++

#include "editor.h"
namespace editor
{
static bool editing = true;
void setEditing(const bool value)
{
editing = value;
}
const bool isEditing()
{
return editing;
}
}