16 lines
286 B
C++
16 lines
286 B
C++
|
#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
|