Files
HydraV3/HydraEngine/source/game/HydraGameProxy.h
T

17 lines
301 B
C++
Raw Normal View History

2026-07-17 15:30:29 +01:00
#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 */