AccelerationConfigModel.cs 434 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shaker.Models
  7. {
  8. public class AccelerationConfigModel:BaseModel
  9. {
  10. public float Weight = 1;
  11. public float Sensitivity = 100;
  12. public Polarity Polarity = Polarity.Positive;
  13. public override object Clone()
  14. {
  15. return this.CloneBase();
  16. }
  17. }
  18. }