Fixed networking references errors.

This commit is contained in:
MapleWheels
2026-02-03 19:48:35 -05:00
committed by Maplewheels
parent cae3741953
commit 9cc20a03c0
6 changed files with 21 additions and 32 deletions
@@ -82,12 +82,12 @@ public class SettingList<T> : ISettingList<T> where T : IEquatable<T>
public Guid InstanceId { get; }
public NetSync SyncType { get; }
public ClientPermissions WritePermissions { get; }
public void ReadNetMessage(INetReadMessage message)
public void ReadNetMessage(IReadMessage message)
{
throw new NotImplementedException();
}
public void WriteNetMessage(INetWriteMessage message)
public void WriteNetMessage(IWriteMessage message)
{
throw new NotImplementedException();
}