1
0
mirror of synced 2024-12-03 02:07:18 +01:00
GC-local-server-rewrite/SharedProject/enums/NavigatorDefaultAvailability.cs
jiych1 14261c8e29 Change avatar/navigator/title select method
Add the function to change player name
2022-07-07 21:46:17 +08:00

11 lines
181 B
C#

using ProtoBuf;
namespace SharedProject.enums;
[ProtoContract]
public enum NavigatorDefaultAvailability
{
NotAvailable = 0,
Available = 1,
AvailableWithVoice = 2,
}