1
0
mirror of synced 2024-11-28 00:20:53 +01:00
TaikoLocalServer/SharedProject/Models/PlaySetting.cs
2023-09-09 21:58:20 +09:00

14 lines
269 B
C#

using SharedProject.Enums;
namespace SharedProject.Models;
public class PlaySetting
{
public uint Speed { get; set; }
public bool IsVanishOn { get; set; }
public bool IsInverseOn { get; set; }
public RandomType RandomType { get; set; }
}