2018-11-30 17:16:00 +09:00

11 lines
199 B
C#

namespace osu.Game.Rulesets.Mods
{
public interface IMod
{
/// <summary>
/// The shortened name of this mod.
/// </summary>
string Acronym { get; }
}
}