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
+16
View File
@@ -0,0 +1,16 @@
#ifndef HYDRAGAMEPROXY
#define HYDRAGAMEPROXY
#include "../engine/HydraObject.h"
class CLASS_DEFINE HydraGameProxy : public HydraObject
{
private:
public:
virtual bool Initialise() = 0;
virtual void Update(float delta_t_seconds) {};
};
#endif /* HYDRAGAMEPROXY */