Initial support for ordering choices and getting them ready for execution.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-10-31 12:02:23 +01:00
parent af611070c5
commit 972af35ecf
11 changed files with 157 additions and 4 deletions

View 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