Files
Nuake-custom/Editor/Source/Editor/Windows/ProjectInterface.h
2025-01-31 18:04:43 -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();
};
}