Implements marking opponents as seen.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-12-14 12:40:50 +01:00
parent c25d7b865e
commit 3baed93597
5 changed files with 58 additions and 2 deletions

View File

@@ -64,6 +64,8 @@ namespace CreatureLib::Battling {
void ValidateBattleState();
inline bool HasEnded() const { return _hasEnded; }
inline uint8_t GetResult() const { return _battleResult; }
const std::vector<BattleSide*>& GetSides() const { return _sides; }
};
}