Initial support for ordering choices and getting them ready for execution.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
14
src/Battling/Flow/TurnOrdering.hpp
Normal file
14
src/Battling/Flow/TurnOrdering.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user