2023-05-08 15:56:10 +03:00

10 lines
193 B
C#

namespace FishNet.Object.Synchronizing
{
/// <summary>
/// Which clients or server may write updates.
/// </summary>
public enum WritePermission
{
ServerOnly
}
}