Dummy beatmap has dummy ruleset

This commit is contained in:
Dean Herbert
2017-07-19 09:59:47 +09:00
parent f168ee660c
commit 632d2e8ba5
3 changed files with 34 additions and 3 deletions

View File

@ -21,6 +21,6 @@ namespace osu.Game.Database
[Indexed]
public bool Available { get; set; }
public Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo));
public virtual Ruleset CreateInstance() => (Ruleset)Activator.CreateInstance(Type.GetType(InstantiationInfo));
}
}