Fully handle turn ordering
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-10-31 12:31:31 +01:00
parent 972af35ecf
commit 42c1623985
6 changed files with 43 additions and 10 deletions

View File

@@ -18,6 +18,11 @@ namespace CreatureLib::Battling{
TurnChoiceKind GetKind() const override {
return TurnChoiceKind ::Attack;
}
int8_t GetPriority() const{
//HOOK: Change priority
return _attack->GetAttack()->GetPriority();
}
};
}