mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
30 lines
1010 B
C#
30 lines
1010 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace osu.Game.Rulesets
|
|
{
|
|
public class RulesetInfo : IEquatable<RulesetInfo>
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
[JsonIgnore]
|
|
public int? ID { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string ShortName { get; set; }
|
|
|
|
public string InstantiationInfo { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public bool Available { get; set; }
|
|
|
|
public virtual Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo), this);
|
|
|
|
public bool Equals(RulesetInfo other) => other != null && ID == other.ID && Available == other.Available && Name == other.Name && InstantiationInfo == other.InstantiationInfo;
|
|
}
|
|
}
|