Fully document SpeciesVariant.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
@@ -87,6 +87,7 @@ namespace CreatureLib::Library {
|
||||
const std::unordered_set<uint32_t>& flags)
|
||||
: _impl(new impl(name, height, weight, baseExperience, types, baseStats, talents, secretTalents, attacks,
|
||||
flags)) {}
|
||||
SpeciesVariant::~SpeciesVariant() = default;
|
||||
|
||||
#define ImplGetter(type, func) \
|
||||
type SpeciesVariant::func() const noexcept { return _impl->func(); }
|
||||
@@ -117,6 +118,4 @@ namespace CreatureLib::Library {
|
||||
|
||||
bool SpeciesVariant::HasFlag(const ArbUt::StringView& key) const noexcept { return _impl->HasFlag(key); }
|
||||
bool SpeciesVariant::HasFlag(uint32_t keyHash) const noexcept { return _impl->HasFlag(keyHash); }
|
||||
|
||||
SpeciesVariant::~SpeciesVariant() = default;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user