Remove custom OptionalType and use the default c# nullable type.

This commit is contained in:
hondacrx
2022-03-01 17:27:56 -05:00
parent cc08afe269
commit c14f1eb3dc
89 changed files with 924 additions and 976 deletions
@@ -82,7 +82,7 @@ namespace Game.Networking.Packets
public List<ushort> Glyphs = new();
public List<ushort> Talents = new();
public Array<ushort> PvpTalents = new(PlayerConst.MaxPvpTalentSlots, 0);
public Optional<InspectGuildData> GuildData = new();
public InspectGuildData? GuildData;
public Array<PVPBracketData> Bracket = new(6, default);
public uint? AzeriteLevel;
public int ItemLevel;