HeavenStudio/Assets/Scripts/Games/Fireworks/Fireworks.cs
Jellirby b68e9cd967
Cheer Readers Initialization + Other (#177)
* Cheer Readers Initialization + Other

So, cheer readers is coming now. Starting with an initialized version of course. Also, any games that only have Switch game events are categorized as [INITIALIZATION ONLY] to better differentiate them from [WIP] games that work, but are missing some things

* Update CheerReaders.cs

Fixed the internal name for cheer readers

* Launch Party is no longer [INITIALIZATION ONLY]
2022-11-28 09:09:22 -05:00

37 lines
797 B
C#

using HeavenStudio.Util;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace HeavenStudio.Games.Loaders
{
using static Minigames;
public static class AgbFireworkLoader
{
public static Minigame AddGame(EventCaller eventCaller) {
return new Minigame("fireworks", "Fireworks \n<color=#eb5454>[INITIALIZATION ONLY]</color>", "0058CE", false, false, new List<GameAction>()
{
});
}
}
}
namespace HeavenStudio.Games
{
using Scripts_Fireworks;
public class Fireworks : Minigame
{
// Start is called before the first frame update
void Awake()
{
}
// Update is called once per frame
void Update()
{
}
}
}