mirror of
https://github.com/osukey/osukey.git
synced 2025-05-08 15:17:24 +09:00
11 lines
199 B
C#
11 lines
199 B
C#
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public interface IMod
|
|
{
|
|
/// <summary>
|
|
/// The shortened name of this mod.
|
|
/// </summary>
|
|
string Acronym { get; }
|
|
}
|
|
}
|