10 lines
193 B
C#
10 lines
193 B
C#
|
namespace FishNet.Object.Synchronizing
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Which clients or server may write updates.
|
||
|
/// </summary>
|
||
|
public enum WritePermission
|
||
|
{
|
||
|
ServerOnly
|
||
|
}
|
||
|
}
|