1
0
mirror of synced 2024-12-19 01:46:09 +01:00
TaikoLocalServer/SharedProject/Enums/PlayMode.cs

9 lines
136 B
C#
Raw Normal View History

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