Handling for tie breaking
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-22 23:09:54 +02:00
parent 1709617e10
commit 742d0c772c
3 changed files with 6 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ namespace CreatureLib::Battling {
class BaseTurnChoice : public ScriptSource {
Creature* _user;
int32_t _randomValue;
protected:
BaseTurnChoice(Creature* user) noexcept : _user(user){};
@@ -18,6 +19,9 @@ namespace CreatureLib::Battling {
virtual ~BaseTurnChoice() = default;
[[nodiscard]] virtual TurnChoiceKind GetKind() const noexcept = 0;
[[nodiscard]] inline Creature* GetUser() const noexcept { return _user; }
inline void __SetRandomValue(int32_t val) noexcept { _randomValue = val; }
inline int32_t __GetRandomValue() const noexcept { return _randomValue; }
};
}