Files
HydraV3/HydraEngine/source/ecs/systems/HydraRenderSystem.h
T
2026-07-17 15:30:29 +01:00

19 lines
384 B
C++

#ifndef HYDRARENDERSYSTEM
#define HYDRARENDERSYSTEM
#include "../../engine/HydraObject.h"
#include "../HydraSystem.h"
#include <GLMIncludes.h>
#include <queue>
class HydraRenderSystem : public HydraSystem
{
public:
void Initialise() override;
protected:
virtual void UpdateSystem(float delta_t_seconds){}
};
#endif /* HYDRARENDERSYSTEM */