14 lines
290 B
C++
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 ®istry, const context &ctx) {
|
|
// render...
|
|
static_cast<void>(registry);
|
|
static_cast<void>(ctx);
|
|
}
|
|
|
|
} // namespace testbed
|