initial commit

This commit is contained in:
Confideo-IOM
2026-07-17 15:30:29 +01:00
commit 7e8ec5a825
416 changed files with 40308 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef GLMINCLUDES
#define GLMINCLUDES
#define GLM_ENABLE_EXPERIMENTAL GLM_ENABLE
#define GLM_FORCE_DEPTH_ZERO_TO_ONE
#include <glm/glm.hpp>
#include <glm/gtx/quaternion.hpp>
#include <glm/gtx/euler_angles.hpp>
#include <glm/gtx/transform.hpp>
#include <glm/gtx/normal.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/trigonometric.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#endif /* GLMINCLUDES */
+14
View File
@@ -0,0 +1,14 @@
#ifndef HYDRA
#define HYDRA
#include "../source/engine/HydraEngine.h"
#include "../source/game/HydraGameProxy.h"
#include "../source/actor/HydraActorManager.h"
#include "../source/actor/HydraActor.h"
#include "../source/actor/HydraPlaneActor.h"
#include "../source/actor/HydraPlayerActor.h"
#include "../source/actor/HydraDirectionalLightActor.h"
#include "../source/camera/HydraCamera.h"
#include <GLMIncludes.h>
#endif /* HYDRA */