CreatureLib/src/Battling/Flow/TurnOrdering.hpp

14 lines
326 B
C++

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