Update LightEngine.h
This commit is contained in:
parent
0b19b1aa30
commit
e8b86931b2
1 changed files with 17 additions and 18 deletions
|
@ -1,47 +1,46 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// Core -------------------------
|
//** CORE **//
|
||||||
#include "Core/Application.h"
|
#include "Core/Application.h"
|
||||||
#include "Core/Window.h"
|
#include "Core/Window.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// Camera ----------------------
|
//** CAMERA **//
|
||||||
#include "Camera/Camera.h"
|
#include "Camera/Camera.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// Debug
|
//** DEBUG **//
|
||||||
#include "Debug/Logger.h"
|
#include "Debug/Logger.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// Events ----------------------
|
//** EVENTS **//
|
||||||
#include "Events/Event.h"
|
#include "Events/Event.h"
|
||||||
#include "Events/KeyboardEvents.h"
|
#include "Events/KeyboardEvents.h"
|
||||||
#include "Events/MouseEvents.h"
|
#include "Events/MouseEvents.h"
|
||||||
#include "Events/WindowEvents.h"
|
#include "Events/WindowEvents.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// Graphics --------------------
|
//** GRAPHICS **//
|
||||||
#include "Graphics/GraphicsContext.h"
|
#include "Graphics/GraphicsContext.h"
|
||||||
#include "Graphics/Renderer.h"
|
#include "Graphics/Renderer.h"
|
||||||
// -----------------------------
|
#include "Graphics/Framebuffer.h"
|
||||||
|
|
||||||
// Layer -----------------------
|
//** LAYER **//
|
||||||
#include "Layer/Layer.h"
|
#include "Layer/Layer.h"
|
||||||
#include "Layer/LayerStack.h"
|
#include "Layer/LayerStack.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// UserInterface ---------------
|
//** USER_INTERFACE **//
|
||||||
#include "UserInterface/UserInterface.h"
|
#include "UserInterface/UserInterface.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// Utility ---------------------
|
//** UTILITY **//
|
||||||
#include "Utility/ResourceManager.h"
|
#include "Utility/ResourceManager.h"
|
||||||
// -----------------------------
|
|
||||||
|
|
||||||
// Base -----------------------
|
//** TIME **//
|
||||||
|
#include "TIme/Timer.h"
|
||||||
|
|
||||||
|
//** BASE **//
|
||||||
#include "Base.h"
|
#include "Base.h"
|
||||||
|
|
||||||
|
//** THIRD_PARTY **//
|
||||||
|
#include <imgui.h>
|
||||||
|
|
||||||
|
// entry point
|
||||||
#ifdef LIGHT_ENTRY_POINT
|
#ifdef LIGHT_ENTRY_POINT
|
||||||
#include "EntryPoint.h"
|
#include "EntryPoint.h"
|
||||||
#endif
|
#endif
|
||||||
// -----------------------------
|
|
Loading…
Add table
Reference in a new issue