16 lines
260 B
C++
16 lines
260 B
C++
#pragma once
|
|
#include "src/Core/Core.h"
|
|
#include "src/Resource/Project.h"
|
|
|
|
namespace Nuake {
|
|
class ProjectInterface
|
|
{
|
|
public:
|
|
Ref<Project> m_CurrentProject;
|
|
|
|
void DrawProjectSettings();
|
|
void DrawCreatePointEntity();
|
|
void DrawEntitySettings();
|
|
};
|
|
}
|