2020-12-30 05:29:51 +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.
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
{
|
|
|
|
public enum DiscordRichPresenceMode
|
|
|
|
{
|
2021-01-03 09:46:25 +00:00
|
|
|
Off,
|
2020-12-30 05:29:51 +00:00
|
|
|
|
|
|
|
[Description("Hide identifiable information")]
|
|
|
|
Limited,
|
|
|
|
|
2021-01-03 09:46:25 +00:00
|
|
|
Full
|
2020-12-30 05:29:51 +00:00
|
|
|
}
|
|
|
|
}
|