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