11 lines
185 B
C++
11 lines
185 B
C++
#pragma once
|
|
|
|
namespace editor
|
|
{
|
|
void setEditing(const bool value);
|
|
const bool isEditing();
|
|
|
|
const int getCurrentTemplate();
|
|
void setCurrentTemplate(const int value);
|
|
}
|