mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
24 lines
537 B
C++
24 lines
537 B
C++
#ifndef ENTT_PROCESS_FWD_HPP
|
|
#define ENTT_PROCESS_FWD_HPP
|
|
|
|
#include "../stl/cstdint.hpp"
|
|
#include "../stl/memory.hpp"
|
|
|
|
namespace entt {
|
|
|
|
template<typename, typename = stl::allocator<void>>
|
|
class basic_process;
|
|
|
|
/*! @brief Alias declaration for the most common use case. */
|
|
using process = basic_process<stl::uint32_t>;
|
|
|
|
template<typename, typename = stl::allocator<void>>
|
|
class basic_scheduler;
|
|
|
|
/*! @brief Alias declaration for the most common use case. */
|
|
using scheduler = basic_scheduler<stl::uint32_t>;
|
|
|
|
} // namespace entt
|
|
|
|
#endif
|