2022-05-27 20:47:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
|
2022-05-28 11:32:17 +00:00
|
|
|
#include "Engine.h"
|
|
|
|
#include "glm/glm.hpp"
|
2022-05-27 20:47:36 +00:00
|
|
|
|
|
|
|
|
2022-05-28 11:32:17 +00:00
|
|
|
#include "graphics/Shader.h"
|
|
|
|
#include "graphics/Window.h"
|
|
|
|
#include "graphics/Camera.h"
|
|
|
|
#include "graphics/Renderable.h"
|
|
|
|
#include "spdlog/spdlog.h"
|
2022-05-27 20:47:36 +00:00
|
|
|
|
2022-05-28 11:32:17 +00:00
|
|
|
#include "MemoryManager.h"
|
2022-05-27 20:47:36 +00:00
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
}
|
2022-05-28 11:32:17 +00:00
|
|
|
void WARN(std::string message);
|