2022-07-07 21:46:17 +08:00
|
|
|
|
using ProtoBuf;
|
2022-07-06 00:52:38 +08:00
|
|
|
|
|
2022-07-07 21:46:17 +08:00
|
|
|
|
namespace SharedProject.enums;
|
|
|
|
|
|
|
|
|
|
[ProtoContract]
|
2022-07-06 00:52:38 +08:00
|
|
|
|
public enum NavigatorGenre
|
|
|
|
|
{
|
|
|
|
|
Default = 1,
|
|
|
|
|
Original = 2,
|
|
|
|
|
Game = 3,
|
|
|
|
|
Touhou = 4,
|
|
|
|
|
Vocaloid = 5,
|
|
|
|
|
Collab = 6,
|
|
|
|
|
}
|