LethalNetworkAPI.LNetworkVariableWritePerms Enum
The allowed write permissions for a LNetworkVariable<TData>
csharp
public enum LNetworkVariableWritePermsFields
Server
Only the server/host can write to the variable.
Declaration
csharp
Server = 0,Owner
Only the owner(s) of the variable can write to it.
Declaration
csharp
Owner = 1,Everyone
Any client can write to the variable.
Declaration
csharp
Everyone = 2,