mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 06:42:25 +02:00
13 lines
293 B
C#
13 lines
293 B
C#
using System;
|
|
|
|
namespace Robust.Client.Utility
|
|
{
|
|
[NotContentImplementable]
|
|
public interface IDiscordRichPresence: IDisposable
|
|
{
|
|
void Initialize();
|
|
void Update(string serverName, string username, string maxUsers, string users);
|
|
void ClearPresence();
|
|
}
|
|
}
|