Reworked retrieving talent, new method is cleaner and harder to misunderstand.
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
16
src/Library/CreatureData/TalentIndex.hpp
Normal file
16
src/Library/CreatureData/TalentIndex.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef CREATURELIB_TALENTINDEX_HPP
|
||||
#define CREATURELIB_TALENTINDEX_HPP
|
||||
|
||||
#include <cstdint>
|
||||
class TalentIndex {
|
||||
bool _secret;
|
||||
uint8_t _index;
|
||||
|
||||
public:
|
||||
TalentIndex() : _secret(false), _index(0){};
|
||||
TalentIndex(bool secret, uint8_t index) : _secret(secret), _index(index) {}
|
||||
constexpr inline bool IsSecret() const { return _secret; }
|
||||
constexpr inline bool GetIndex() const { return _index; }
|
||||
};
|
||||
|
||||
#endif // CREATURELIB_TALENTINDEX_HPP
|
||||
Reference in New Issue
Block a user