Files
Nuake-custom/Editor/src/Windows/ProjectInterface.h

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();
};
}