Major cleanup.

Moved to namespace
Cleanup includes
This commit is contained in:
Antoine Pilote
2021-07-11 18:56:44 -04:00
parent f77bef6b28
commit 0c6ed48bbd
174 changed files with 11772 additions and 11296 deletions

View File

@@ -2,17 +2,14 @@
#include "src/Core/Core.h"
#include "src/Resource/Project.h"
namespace Nuake {
class ProjectInterface
{
public:
Ref<Project> m_CurrentProject;
class ProjectInterface
{
public:
Ref<Project> m_CurrentProject;
void DrawProjectSettings();
void DrawCreatePointEntity();
void DrawEntitySettings();
};
void DrawProjectSettings();
void DrawCreatePointEntity();
void DrawEntitySettings();
};
}