mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 13:07:24 +08:00
26 lines
582 B
C#
26 lines
582 B
C#
using System;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Database;
|
|
using SQLite.Net;
|
|
|
|
namespace osu.Game.Input
|
|
{
|
|
public class BindingStore : DatabaseBackedStore
|
|
{
|
|
public BindingStore(SQLiteConnection connection, Storage storage = null)
|
|
: base(connection, storage)
|
|
{
|
|
}
|
|
|
|
protected override void Prepare(bool reset = false)
|
|
{
|
|
Connection.CreateTable<Binding>();
|
|
}
|
|
|
|
protected override Type[] ValidTypes => new[]
|
|
{
|
|
typeof(Binding)
|
|
};
|
|
|
|
}
|
|
} |