2019-10-31 11:02:23 +00:00
|
|
|
#ifndef CREATURELIB_TURNORDERING_HPP
|
|
|
|
#define CREATURELIB_TURNORDERING_HPP
|
|
|
|
|
|
|
|
#include <vector>
|
2019-11-28 11:55:22 +00:00
|
|
|
#include "../../Core/Random.hpp"
|
|
|
|
#include "../TurnChoices/BaseTurnChoice.hpp"
|
2019-10-31 11:02:23 +00:00
|
|
|
|
|
|
|
namespace CreatureLib::Battling {
|
|
|
|
class TurnOrdering {
|
|
|
|
public:
|
2019-11-10 16:08:42 +00:00
|
|
|
static void OrderChoices(std::vector<BaseTurnChoice*>& vec, CreatureLib::Core::Random& rand);
|
2019-10-31 11:02:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-11-28 11:55:22 +00:00
|
|
|
#endif // CREATURELIB_TURNORDERING_HPP
|