You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 line
459 B

  1. #pragma once
  2. #include <ecs/config.h>
  3. #include "./defer_proxy.h"
  4. beg_namespace_ecs_context
  5. {
  6. namespace __impl
  7. {
  8. template<typename T_settings>
  9. struct step_proxy_t
  10. : public defer_proxy_t<T_settings>
  11. {
  12. private:
  13. using base_type = defer_proxy_t<T_settings>;
  14. public: /* execute */
  15. ecs_context_proxy_func(base_type, execute_systems)
  16. };
  17. }
  18. }
  19. end_namespace_ecs_context