25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
358 B

  1. #pragma once
  2. #include <ecs/config.h>
  3. beg_namespace_ecs_core_system_scheduler
  4. {
  5. template<typename T_settings>
  6. struct atomic_counter
  7. {
  8. public:
  9. using settings_type = T_settings;
  10. public:
  11. template<typename... T_args>
  12. inline void execute(T_args&&...)
  13. { }
  14. };
  15. }
  16. end_namespace_ecs_core_system_scheduler