CreatureLib/src/Battling/Flow/TurnOrdering.hpp
Deukhoofd 53bfbd36c2
Some checks failed
continuous-integration/drone/push Build is failing
Use a precompiled header.
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
2020-09-25 13:05:15 +02:00

14 lines
326 B
C++

#ifndef CREATURELIB_TURNORDERING_HPP
#define CREATURELIB_TURNORDERING_HPP
#include "../TurnChoices/BaseTurnChoice.hpp"
namespace CreatureLib::Battling {
class TurnOrdering {
public:
static void OrderChoices(std::vector<std::shared_ptr<BaseTurnChoice>>& vec);
};
}
#endif // CREATURELIB_TURNORDERING_HPP