osu/osu.Game/Rulesets/RulesetInfo.cs

25 lines
710 B
C#
Raw Normal View History

2017-04-17 08:43:48 +00: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;
using SQLite.Net.Attributes;
namespace osu.Game.Rulesets
2017-04-17 08:43:48 +00:00
{
public class RulesetInfo
{
[PrimaryKey, AutoIncrement]
2017-04-17 10:44:03 +00:00
public int? ID { get; set; }
2017-04-17 08:43:48 +00:00
[Indexed(Unique = true)]
2017-04-17 08:43:48 +00:00
public string Name { get; set; }
[Indexed(Unique = true)]
2017-04-17 08:43:48 +00:00
public string InstantiationInfo { get; set; }
[Indexed]
public bool Available { get; set; }
2017-07-19 00:59:47 +00:00
public virtual Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo));
2017-04-17 08:43:48 +00:00
}
}