Fling Engine  0.00.1
Fling Engine is a game engine written in Vulkan
FlingEngine.h
Go to the documentation of this file.
1 #pragma once
2 
3 
4 #include "pch.h"
5 #include "Engine.h"
6 #include "Renderer.h"
7 #include "Platform.h"
8 #include "Logger.h"
9 #include "Timing.h"
10 #include "ResourceManager.h"
11 #include "FlingConfig.h"
12 #include "NonCopyable.hpp"
13 #include "World.h"
14 #include <nlohmann/json.hpp>
15 #include "FirstPersonCamera.h"
16 #include "FlingWindow.h"
17 #include "Vertex.h"
18 #include "Singleton.hpp"
19 
20 #ifndef GLFW_INCLUDE_VULKAN
21 # define GLFW_INCLUDE_VULKAN
22 #endif
23 #include <GLFW/glfw3.h>
24 
25 #include "UniformBufferObject.h"