Files
HansTheGatherer/src/render.hpp
2025-06-09 10:49:59 +02:00

12 lines
222 B
C++

#pragma once
#include <entt/entt.hpp>
struct RenderModule
{
RenderModule(entt::registry& registry);
static void RenderSprites(entt::registry& registry);
static void RenderScore(entt::registry& registry);
};