1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 13:47:21 +08:00

17 lines
407 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-11-30 17:50:27 +09:00
using Newtonsoft.Json;
2018-11-30 17:50:27 +09:00
namespace osu.Game.Rulesets.Mods
{
public interface IMod
{
/// <summary>
/// The shortened name of this mod.
/// </summary>
2018-12-14 13:38:13 +09:00
[JsonProperty("acronym")]
string Acronym { get; }
}
}