

Adds some new Twitch integrations to ROUNDS!
By default you'll get:
You can easily create your own Channel Point Rewards using the RWV API.
class TestReward: TwitchReward
{
public override string GetTitle() => "Your Cool Reward";
public override string GetPrompt() => "A super cool test reward for cool kids only";
public override Color GetColor() => Color.red;
public override IEnumerator OnRedeem()
{
yield return base.OnRedeem();
Debug.Log($"A viewer redeemed {GetTitle()}!")
}
}
void Start()
{
RWV.RegisterReward<TestReward>();
}