Made most of the networking interfaces public.

This commit is contained in:
MapleWheels
2026-02-03 19:43:49 -05:00
committed by Maplewheels
parent 80555ef933
commit cae3741953
9 changed files with 12 additions and 173 deletions
@@ -28,14 +28,14 @@ public interface INetworkSyncEntity
/// machine.
/// </summary>
/// <param name="message">Wrapper for the internal type: <see cref="IReadMessage"/></param>
void ReadNetMessage(INetReadMessage message);
void ReadNetMessage(IReadMessage message);
/// <summary>
/// Called when a network send-event involving this entity is triggered. Any data expected to be read by the recipient
/// network object on the other instance(s) should be written to the packet.
/// </summary>
/// <param name="message">Wrapper for the internal type: <see cref="IWriteMessage"/></param>
void WriteNetMessage(INetWriteMessage message);
void WriteNetMessage(IWriteMessage message);
}
/// <summary>