blob: d1c1fafe432999835b3cbf524516a51f839969e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "cplt_fwd.hpp"
#include <memory>
class UIState {
public:
static void Init();
static UIState& GetInstance();
public:
std::unique_ptr<Project> CurrentProject;
};
|