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