您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
352 B

  1. #pragma once
  2. #include <ecs/config.h>
  3. beg_namespace_ecs_core_parallelism
  4. {
  5. struct none
  6. {
  7. template<typename T_instance, typename T_context, typename T_func>
  8. inline void operator()(T_instance& instance, T_context& context, T_func&& func) const
  9. {
  10. // TODO
  11. }
  12. };
  13. }
  14. end_namespace_ecs_core_parallelism