Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Structures/Presences/GameType.cs
2017-05-14 14:02:51 +02:00

19 lines
342 B
C#

namespace Maki.Structures.Presences
{
/// <summary>
/// Discord API Game Type enum
/// </summary>
internal enum GameType
{
/// <summary>
/// Playing {name}
/// </summary>
Game = 0,
/// <summary>
/// Streaming {name}
/// </summary>
Streaming = 1,
}
}