9 lines
186 B
C++
9 lines
186 B
C++
#pragma once
|
|
#include "render/type.h"
|
|
namespace api{
|
|
struct EditorConfig {
|
|
bool IsRenderEditorSurface = false;
|
|
bool IsGameStart = false;
|
|
bool isGamePause = false;
|
|
};
|
|
} |