mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-07-12 06:29:14 +00:00
First commit
This commit is contained in:
19
DiscordAPI/Message/SpectateMessage.cs
Normal file
19
DiscordAPI/Message/SpectateMessage.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace DiscordRPC.Message
|
||||
{
|
||||
/// <summary>
|
||||
/// Called when the Discord Client wishes for this process to spectate a game. D -> C.
|
||||
/// </summary>
|
||||
public class SpectateMessage : JoinMessage
|
||||
{
|
||||
/// <summary>
|
||||
/// The type of message received from discord
|
||||
/// </summary>
|
||||
public override MessageType Type { get { return MessageType.Spectate; } }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user