Files
PrinceOfGlory/Packages/com.firstgeargames.fishnet/Runtime/Object/Synchronizing/ReadPermissions.cs
2026-03-03 03:15:46 +08:00

22 lines
524 B
C#

namespace FishNet.Object.Synchronizing
{
/// <summary>
/// Which clients may receive synchronization updates.
/// </summary>
public enum ReadPermission : byte
{
/// <summary>
/// All observers will receive updates.
/// </summary>
Observers,
/// <summary>
/// Only owner will receive updates.
/// </summary>
OwnerOnly,
/// <summary>
/// Send to all observers except owner.
/// </summary>
ExcludeOwner
}
}