2016-12-06 17:56:20 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
2016-10-19 01:35:01 +08:00
|
|
|
|
using SQLite.Net.Attributes;
|
2016-10-04 23:31:10 +08:00
|
|
|
|
|
2016-10-19 01:35:01 +08:00
|
|
|
|
namespace osu.Game.Database
|
2016-10-14 11:33:58 +08:00
|
|
|
|
{
|
|
|
|
|
public class BaseDifficulty
|
|
|
|
|
{
|
|
|
|
|
[PrimaryKey, AutoIncrement]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public float DrainRate { get; set; }
|
|
|
|
|
public float CircleSize { get; set; }
|
|
|
|
|
public float OverallDifficulty { get; set; }
|
|
|
|
|
public float ApproachRate { get; set; }
|
|
|
|
|
public float SliderMultiplier { get; set; }
|
|
|
|
|
public float SliderTickRate { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|