2019-01-24 17:43:03 +09:00
|
|
|
|
// 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
|
|
|
|
|
2018-12-12 16:06:56 +09:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2018-11-30 17:50:27 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
2018-11-30 17:16:00 +09:00
|
|
|
|
{
|
|
|
|
|
public interface IMod
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The shortened name of this mod.
|
|
|
|
|
/// </summary>
|
2018-12-14 13:38:13 +09:00
|
|
|
|
[JsonProperty("acronym")]
|
2018-11-30 17:16:00 +09:00
|
|
|
|
string Acronym { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|