Support for getting a creatures actual talent.
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
2020-09-05 14:51:06 +02:00
parent a0ae9e8523
commit def38e98c6
2 changed files with 5 additions and 0 deletions

View File

@@ -114,6 +114,7 @@ namespace CreatureLib::Battling {
inline bool IsOnBattleField() const { return _onBattleField; }
inline std::string_view GetNickname() const noexcept { return _nickname; }
const CreatureLib::Library::TalentIndex& GetRealTalent() const noexcept { return _talentIndex; }
const ArbUt::StringView& GetActiveTalent() const;
[[nodiscard]] bool IsFainted() const noexcept;