Style fixes.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
88971dce37
commit
badfccf440
|
@ -1,5 +1,4 @@
|
|||
#include "PokemonForme.hpp"
|
||||
|
||||
#include <utility>
|
||||
PkmnLib::Library::PokemonForme::PokemonForme(const ArbUt::StringView& name, float height, float weight,
|
||||
uint32_t baseExperience, const ArbUt::List<uint8_t>& types,
|
||||
|
@ -8,4 +7,5 @@ PkmnLib::Library::PokemonForme::PokemonForme(const ArbUt::StringView& name, floa
|
|||
const ArbUt::List<ArbUt::StringView>& secretTalents,
|
||||
const CreatureLib::Library::LearnableAttacks* attacks,
|
||||
std::unordered_set<uint32_t> flags)
|
||||
: SpeciesVariant(name, height, weight, baseExperience, types, baseStats, talents, secretTalents, attacks, std::move(flags)) {}
|
||||
: SpeciesVariant(name, height, weight, baseExperience, types, baseStats, talents, secretTalents, attacks,
|
||||
std::move(flags)) {}
|
||||
|
|
|
@ -15,7 +15,8 @@ namespace PkmnLib::Library {
|
|||
public:
|
||||
PokemonSpecies(uint16_t id, const ArbUt::StringView& name, const PokemonForme* defaultForme, float genderRatio,
|
||||
const ArbUt::StringView& growthRate, uint8_t captureRate, uint8_t baseHappiness,
|
||||
const ArbUt::List<ArbUt::StringView>& eggGroups, std::unordered_set<uint32_t> flags = {}) noexcept
|
||||
const ArbUt::List<ArbUt::StringView>& eggGroups,
|
||||
std::unordered_set<uint32_t> flags = {}) noexcept
|
||||
: CreatureSpecies(id, name, defaultForme, genderRatio, growthRate, captureRate, flags),
|
||||
_baseHappiness(baseHappiness), _eggGroups(eggGroups) {}
|
||||
|
||||
|
|
Loading…
Reference in New Issue