testbed: work in progress (if only I had more time these days...)

This commit is contained in:
Michele Caini
2025-04-07 17:46:21 +02:00
parent 36eba38f62
commit 0fa38bf0e0
7 changed files with 66 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
#include <application/context.h>
#include <entt/entity/registry.hpp>
#include <system/rendering_system.h>
namespace testbed {
void rendering_system(entt::registry &registry, const context &ctx) {
// render...
static_cast<void>(registry);
static_cast<void>(ctx);
}
} // namespace testbed