mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 02:43:19 +08:00
20 lines
423 B
C#
20 lines
423 B
C#
|
using osu.Game.Rulesets;
|
||
|
using OpenTK.Input;
|
||
|
using SQLite.Net.Attributes;
|
||
|
using SQLiteNetExtensions.Attributes;
|
||
|
|
||
|
namespace osu.Game.Input
|
||
|
{
|
||
|
public class Binding
|
||
|
{
|
||
|
[ForeignKey(typeof(RulesetInfo))]
|
||
|
public int? RulesetID { get; set; }
|
||
|
|
||
|
[Indexed]
|
||
|
public int? Variant { get; set; }
|
||
|
|
||
|
public Key Key { get; set; }
|
||
|
|
||
|
public int Action { get; set; }
|
||
|
}
|
||
|
}
|