Enable nullable checks for all subprojects except structures/game

This commit is contained in:
Kurt
2020-12-27 16:35:08 -08:00
parent 22ef506b4e
commit 955ba9fed6
54 changed files with 251 additions and 187 deletions

View File

@@ -1,4 +1,6 @@
namespace pkNX.Structures
using System;
namespace pkNX.Structures
{
/// <summary>
/// Table of Evolution Branch Entries
@@ -7,5 +9,7 @@ public abstract class EvolutionSet
{
public EvolutionMethod[] PossibleEvolutions;
public abstract byte[] Write();
protected EvolutionSet() => PossibleEvolutions = Array.Empty<EvolutionMethod>();
}
}