mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-08-01 08:18:20 -04:00
Engine: reworks Twitch IRC parsing/client + Streamer event surface (viewers roster, chat/sub/gift/raid messages) and removes older/broken Twitch API features. Menu/Editor: adds service linking/stream-connect UI (new Services modal; pause/game modal + editor title button) gated by a project setting. Services/utilities: introduces helper APIs for linking/listing services; adds unit tests for the IRC parser and subscription tier parsing.
17 lines
300 B
C#
17 lines
300 B
C#
namespace Sandbox;
|
|
|
|
public static partial class Streamer
|
|
{
|
|
/// <summary>
|
|
/// The tier of a Twitch subscription. Prime is the free Amazon Prime sub; Tier1/2/3 are the paid
|
|
/// tiers (roughly $5 / $10 / $25).
|
|
/// </summary>
|
|
public enum SubscriptionTier
|
|
{
|
|
Prime,
|
|
Tier1,
|
|
Tier2,
|
|
Tier3,
|
|
}
|
|
}
|