osu/osu.Game/Rulesets/Mods/IMod.cs

17 lines
408 B
C#
Raw Normal View History

2018-11-30 08:50:27 +00:00
// 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;
2018-11-30 08:50:27 +00:00
namespace osu.Game.Rulesets.Mods
{
public interface IMod
{
/// <summary>
/// The shortened name of this mod.
/// </summary>
2018-12-14 04:38:13 +00:00
[JsonProperty("acronym")]
string Acronym { get; }
}
}