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