17 lines
414 B
C++
17 lines
414 B
C++
#ifndef CREATURELIB_TURNORDERING_HPP
|
|
#define CREATURELIB_TURNORDERING_HPP
|
|
|
|
#include <Arbutils/Random.hpp>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include "../TurnChoices/BaseTurnChoice.hpp"
|
|
|
|
namespace CreatureLib::Battling {
|
|
class TurnOrdering {
|
|
public:
|
|
static void OrderChoices(std::vector<std::shared_ptr<BaseTurnChoice>>& vec, ArbUt::Random& rand);
|
|
};
|
|
}
|
|
|
|
#endif // CREATURELIB_TURNORDERING_HPP
|