Breaking change: rework of talents.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -4,13 +4,14 @@ CreatureLib::Library::DataLibrary::DataLibrary(LibrarySettings* settings, Creatu
|
||||
CreatureLib::Library::AttackLibrary* attacks,
|
||||
CreatureLib::Library::ItemLibrary* items,
|
||||
CreatureLib::Library::GrowthRateLibrary* growthRates,
|
||||
TypeLibrary* typeLibrary)
|
||||
TypeLibrary* typeLibrary, TalentLibrary* talentLibrary)
|
||||
: _settings(settings), _species(species), _attacks(attacks), _items(items), _growthRates(growthRates),
|
||||
_typeLibrary(typeLibrary) {
|
||||
_typeLibrary(typeLibrary), _talentLibrary(talentLibrary) {
|
||||
EnsureNotNull(_settings)
|
||||
EnsureNotNull(_species)
|
||||
EnsureNotNull(_attacks)
|
||||
EnsureNotNull(_items)
|
||||
EnsureNotNull(_growthRates)
|
||||
EnsureNotNull(_typeLibrary)
|
||||
EnsureNotNull(_talentLibrary)
|
||||
}
|
||||
Reference in New Issue
Block a user