mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
18 lines
236 B
C++
18 lines
236 B
C++
#pragma once
|
|
#include "src/Core/Core.h"
|
|
#include "src/Resource/Project.h"
|
|
|
|
|
|
class ProjectInterface
|
|
{
|
|
public:
|
|
Ref<Project> m_CurrentProject;
|
|
|
|
|
|
void DrawProjectSettings();
|
|
|
|
void DrawCreatePointEntity();
|
|
void DrawEntitySettings();
|
|
|
|
|
|
}; |