namespace Unity.Netcode { /// /// Header placed at the start of each message batch /// internal struct BatchHeader : INetworkSerializeByMemcpy { /// /// Total number of messages in the batch. /// public ushort BatchSize; } }