#pragma once #include namespace orbis { enum class ThreadState : std::uint32_t { INACTIVE, INHIBITED, CAN_RUN, RUNQ, RUNNING }; } // namespace orbis