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:
15
src/Battling/Flow/TurnHandler.hpp
Normal file
15
src/Battling/Flow/TurnHandler.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef CREATURELIB_TURNHANDLER_HPP
|
||||
#define CREATURELIB_TURNHANDLER_HPP
|
||||
|
||||
#include "ChoiceQueue.hpp"
|
||||
|
||||
namespace CreatureLib::Battling {
|
||||
class Battle;
|
||||
|
||||
class TurnHandler {
|
||||
public:
|
||||
static void RunTurn(ChoiceQueue& queue);
|
||||
};
|
||||
}
|
||||
|
||||
#endif //CREATURELIB_TURNHANDLER_HPP
|
||||
Reference in New Issue
Block a user