@@ -93,7 +93,7 @@ struct actions_map {
9393 */
9494template <typename System>
9595auto execute_system ( //
96- ::entt::registry& registry,
96+ ecsact ::entt::registry_t & registry,
9797 ecsact_system_execution_context* parent,
9898 const ecsact::entt::actions_map& actions_map
9999) -> void {
@@ -115,7 +115,7 @@ auto execute_system( //
115115 */
116116template <typename Action>
117117auto execute_actions ( //
118- ::entt::registry& registry,
118+ ecsact ::entt::registry_t & registry,
119119 ecsact_system_execution_context* parent,
120120 const ecsact::entt::actions_map& actions_map
121121) -> void {
@@ -129,7 +129,7 @@ auto execute_actions( //
129129}
130130
131131using execute_fn_t = void (*)(
132- ::entt::registry& registry,
132+ ecsact ::entt::registry_t & registry,
133133 ecsact_system_execution_context* parent,
134134 const ecsact::entt::actions_map& actions_map
135135);
@@ -140,7 +140,7 @@ using execute_fn_t = void (*)(
140140 * `ecsact_rt_entt_codegen`.
141141 */
142142template <typename SystemLike>
143- auto prepare_system_like (::entt::registry &) -> void {
143+ auto prepare_system_like (ecsact ::entt::registry_t &) -> void {
144144 static_assert (detail::unimplemented_by_codegen<SystemLike>, R"(
145145 -----------------------------------------------------------------------------
146146| (!) CODEGEN ERROR |
@@ -155,7 +155,8 @@ auto prepare_system_like(::entt::registry&) -> void {
155155 * entity.
156156 */
157157template <typename SystemLike>
158- auto entity_matches_system (::entt::registry&, ecsact::entt::entity_id) -> bool {
158+ auto entity_matches_system (ecsact::entt::registry_t &, ecsact::entt::entity_id)
159+ -> bool {
159160 static_assert (detail::unimplemented_by_codegen<SystemLike>, R"(
160161 -----------------------------------------------------------------------------
161162| (!) CODEGEN ERROR |
0 commit comments