osu/osu.Game/Rulesets/RulesetInfo.cs

25 lines
893 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;
2017-10-05 21:23:26 +00:00
using System.ComponentModel.DataAnnotations.Schema;
2017-04-17 08:43:48 +00:00
namespace osu.Game.Rulesets
2017-04-17 08:43:48 +00:00
{
public class RulesetInfo : IEquatable<RulesetInfo>
2017-04-17 08:43:48 +00:00
{
2017-10-05 21:23:26 +00:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2017-10-14 05:28:25 +00:00
public int? ID { get; set; }
2017-04-17 08:43:48 +00:00
public string Name { get; set; }
public string InstantiationInfo { get; set; }
public bool Available { get; set; }
public virtual Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo), this);
2017-10-14 05:28:25 +00:00
public bool Equals(RulesetInfo other) => other != null && ID == other.ID && Available == other.Available && Name == other.Name && InstantiationInfo == other.InstantiationInfo;
2017-04-17 08:43:48 +00:00
}
2017-08-18 05:40:36 +00:00
}