Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
306 B

  1. #pragma once
  2. #include <ecs/config.h>
  3. #include <moodycamel/blockingconcurrentqueue.h>
  4. #include "../fixed_function.h"
  5. beg_namespace_ecs_core_utils
  6. {
  7. using task = fixed_function<void(), 128>;
  8. using task_queue = moodycamel::BlockingConcurrentQueue<task>;
  9. }
  10. end_namespace_ecs_core_utils