14261c8e29
Add the function to change player name
11 lines
181 B
C#
11 lines
181 B
C#
using ProtoBuf;
|
|
|
|
namespace SharedProject.enums;
|
|
|
|
[ProtoContract]
|
|
public enum NavigatorDefaultAvailability
|
|
{
|
|
NotAvailable = 0,
|
|
Available = 1,
|
|
AvailableWithVoice = 2,
|
|
} |