Files
Nuake/NuakeEditor/Source/Editor/Windows/ProjectInterface.h
2025-01-30 22:41:17 -05:00

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