1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 20:22:55 +08:00
osu-lazer/osu.Game/Rulesets/Mods/IMod.cs
2018-12-12 16:06:56 +09:00

17 lines
397 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]
string Acronym { get; }
}
}