This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/FishNet/Runtime/Object/Synchronizing/ReadPermissions.cs

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
}
}