15 lines
304 B
C#
Raw Normal View History

2021-04-28 15:37:18 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scenes.Ride.Scripts.Model
{
public class RideSetting
{
public double Sensitivity { set; get; }
public bool ShowOtherHead { set; get; }
2021-04-28 15:37:18 +08:00
}
}