1
0
mirror of synced 2025-01-30 20:03:46 +01:00

9 lines
136 B
C#
Raw Normal View History

2022-09-05 00:52:58 +08:00
namespace SharedProject.Enums;
2022-08-29 20:46:28 +08:00
public enum PlayMode
{
Normal = 0,
DanMode = 1,
// Not sure about this
2022-09-18 02:06:11 +08:00
AiBattle = 6
2022-08-29 20:46:28 +08:00
}