HeavenStudioPlus/Assets/Scripts/Games/CheerReaders/CheerReaders.cs

37 lines
759 B
C#
Raw Normal View History

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