Files
Aeon/ThirdParty/entt/testbed/system/hud_system.cpp
2025-06-29 23:33:26 +01:00

14 lines
290 B
C++

#include <application/context.h>
#include <entt/entity/registry.hpp>
#include <system/hud_system.h>
namespace testbed {
void hud_system(entt::registry &registry, const context &ctx) {
// render...
static_cast<void>(registry);
static_cast<void>(ctx);
}
} // namespace testbed