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