mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:47:52 +08:00
19 lines
508 B
C#
19 lines
508 B
C#
using System;
|
|
using SQLite.Net.Attributes;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
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; }
|
|
}
|
|
}
|
|
|