hud_system.cpp 290 B

12345678910111213
  1. #include <application/context.h>
  2. #include <entt/entity/registry.hpp>
  3. #include <system/hud_system.h>
  4. namespace testbed {
  5. void hud_system(entt::registry &registry, const context &ctx) {
  6. // render...
  7. static_cast<void>(registry);
  8. static_cast<void>(ctx);
  9. }
  10. } // namespace testbed