1
0
mirror of synced 2024-12-18 09:25:56 +01:00
TaikoLocalServer/SharedProject/Models/PlaySetting.cs

14 lines
269 B
C#
Raw Normal View History

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; }
}