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