mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 21:03:51 +08:00
17 lines
408 B
C#
17 lines
408 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 Newtonsoft.Json;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public interface IMod
|
|
{
|
|
/// <summary>
|
|
/// The shortened name of this mod.
|
|
/// </summary>
|
|
[JsonProperty("acronym")]
|
|
string Acronym { get; }
|
|
}
|
|
}
|