Style cleanup
This commit is contained in:
@@ -50,7 +50,7 @@ public interface ISpecies : INamedValue
|
||||
/// Gets a form by name.
|
||||
/// </summary>
|
||||
bool TryGetForm(StringKey id, [MaybeNullWhen(false)] out IForm form);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets the form the Pokémon will have by default, if no other form is specified.
|
||||
/// </summary>
|
||||
@@ -70,7 +70,7 @@ public interface ISpecies : INamedValue
|
||||
/// The data regarding into which Pokémon this species can evolve, and how.
|
||||
/// </summary>
|
||||
IReadOnlyList<IEvolution> EvolutionData { get; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The egg groups the Pokémon belongs to.
|
||||
/// </summary>
|
||||
@@ -124,14 +124,13 @@ public class SpeciesImpl : ISpecies
|
||||
|
||||
/// <inheritdoc />
|
||||
public ImmutableHashSet<StringKey> Flags { get; }
|
||||
|
||||
|
||||
/// <inheritdoc />
|
||||
public IReadOnlyList<IEvolution> EvolutionData { get; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public ICollection<StringKey> EggGroups { get; }
|
||||
|
||||
|
||||
/// <inheritdoc />
|
||||
public bool TryGetForm(StringKey id, [MaybeNullWhen(false)] out IForm form) => Forms.TryGetValue(id, out form);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user