1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00
osu-lazer/osu.Game/Database/RulesetInfo.cs

26 lines
728 B
C#
Raw Normal View History

2017-04-17 16:43:48 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets;
2017-04-17 16:43:48 +08:00
using SQLite.Net.Attributes;
namespace osu.Game.Database
{
public class RulesetInfo
{
[PrimaryKey, AutoIncrement]
2017-04-17 18:44:03 +08:00
public int? ID { get; set; }
2017-04-17 16:43:48 +08:00
[Indexed(Unique = true)]
2017-04-17 16:43:48 +08:00
public string Name { get; set; }
[Indexed(Unique = true)]
2017-04-17 16:43:48 +08:00
public string InstantiationInfo { get; set; }
[Indexed]
public bool Available { get; set; }
public Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo));
}
}