CreatureLib/src/Battling/Flow/TurnOrdering.hpp

15 lines
333 B
C++
Raw Normal View History

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