refactor(GroundControl): add namespace and structure methods

main
uc-hoba 3 weeks ago
parent 8a579a7d29
commit 751ed772e6
  1. 10
      Assets/Scripts/GroundControl.cs

@ -1,16 +1,18 @@
using UnityEngine; using UnityEngine;
namespace UltraCombos
{
public class GroundControl : MonoBehaviour public class GroundControl : MonoBehaviour
{ {
// Start is called once before the first execution of Update after the MonoBehaviour is created private void Start()
void Start()
{ {
} }
// Update is called once per frame private void Update()
void Update()
{ {
} }
} }
}

Loading…
Cancel
Save