HeavenStudioPlus/Assets/Scripts/Games/Fireworks/Fireworks.cs

24 lines
415 B
C#
Raw Normal View History

2022-03-14 14:21:05 +00:00
using HeavenStudio.Util;
2022-03-13 14:35:22 +00:00
using System;
using System.Collections.Generic;
using UnityEngine;
2022-03-14 14:21:05 +00:00
namespace HeavenStudio.Games
2022-03-13 14:35:22 +00:00
{
using Scripts_Fireworks;
public class Fireworks : Minigame
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}