mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 18:07:28 +08:00
21 lines
647 B
C#
21 lines
647 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
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; }
|
|
}
|
|
}
|
|
|