namespace FishNet.Object.Synchronizing { /// /// Which clients may receive synchronization updates. /// //Remove on V5. Just rename file to ReadPermission.cs, do not remove. public enum ReadPermission : byte { /// /// All observers will receive updates. /// Observers = 0, /// /// Only owner will receive updates. /// OwnerOnly = 1, /// /// Send to all observers except owner. /// ExcludeOwner = 2, } }