1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:07:25 +08:00
osu-lazer/osu.Game/Rulesets/Mods/IMod.cs

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