using Netcode; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StardustCore.NetCode { public class NetKeyValuePair : NetField, NetKeyValuePair> where KField : NetField, new() where VField : NetField, new() { protected override void ReadDelta(BinaryReader reader, NetVersion version) { throw new NotImplementedException(); } protected override void WriteDelta(BinaryWriter writer) { throw new NotImplementedException(); } } }