CreatureLib/src/Battling/Flow/TurnOrdering.hpp

16 lines
380 B
C++
Raw Normal View History

#ifndef CREATURELIB_TURNORDERING_HPP
#define CREATURELIB_TURNORDERING_HPP
#include <Arbutils/Random.hpp>
#include <vector>
#include "../TurnChoices/BaseTurnChoice.hpp"
namespace CreatureLib::Battling {
class TurnOrdering {
public:
2020-05-26 16:31:06 +00:00
static void OrderChoices(std::vector<BaseTurnChoice*>& vec, ArbUt::Random& rand);
};
}
#endif // CREATURELIB_TURNORDERING_HPP