Logo upload + starting Spaceball

This commit is contained in:
Starpelly
2021-12-25 01:22:09 -05:00
parent db79325393
commit 199abb7fd3
20 changed files with 492 additions and 9 deletions

View File

@ -0,0 +1,16 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
namespace RhythmHeavenMania.Games.Spaceball
{
public class Spaceball : Minigame
{
private void Start()
{
Debug.Log("Spaceball");
}
}
}