superstar_v2/PlayState.cs
2025-04-07 16:54:10 +08:00

11 lines
155 B
C#

namespace DualScreenDemo
{
public enum PlayState
{
Playing,
Played,
NotPlayed,
Skipped
}
}