CreatureLib/src/Battling/Flow/TurnOrdering.hpp
Deukhoofd 25f65eb47b
All checks were successful
continuous-integration/drone/push Build is passing
Update to newer Arbutils version.
2020-05-26 18:31:06 +02:00

16 lines
380 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, ArbUt::Random& rand);
};
}
#endif // CREATURELIB_TURNORDERING_HPP