Files
Nuake/Editor/src/ProjectInterface.h
Antoine Pilote 1740a5707f CSM Shadows
2021-06-20 23:08:45 -04:00

18 lines
236 B
C++

#pragma once
#include "src/Core/Core.h"
#include "src/Resource/Project.h"
class ProjectInterface
{
public:
Ref<Project> m_CurrentProject;
void DrawProjectSettings();
void DrawCreatePointEntity();
void DrawEntitySettings();
};