renderpip/include/systems.hpp
saarsena@gmail.com 5c7d1905a9 first commit
2026-04-02 03:41:50 -04:00

16 lines
275 B
C++

/**
* @file systems.hpp
* @brief ECS System registration
*/
#pragma once
#include <flecs.h>
// Forward declaration
struct GameContext;
/**
* @brief Register all components and systems with the ECS world
*/
void register_systems(flecs::world& ecs, GameContext* ctx);