#ifndef CREATURELIB_TURNORDERING_HPP #define CREATURELIB_TURNORDERING_HPP #include "../TurnChoices/BaseTurnChoice.hpp" #include "../../Core/Random.hpp" #include namespace CreatureLib::Battling { class TurnOrdering { public: static void OrderChoices(std::vector& vec, CreatureLib::Core::Random& rand); }; } #endif //CREATURELIB_TURNORDERING_HPP