diff --git a/Assets/Scripts/GroundControl.cs b/Assets/Scripts/GroundControl.cs index 22113c0..aaeacaf 100644 --- a/Assets/Scripts/GroundControl.cs +++ b/Assets/Scripts/GroundControl.cs @@ -1,16 +1,18 @@ using UnityEngine; -public class GroundControl : MonoBehaviour +namespace UltraCombos { - // Start is called once before the first execution of Update after the MonoBehaviour is created - void Start() + public class GroundControl : MonoBehaviour { - - } + private void Start() + { - // Update is called once per frame - void Update() - { - + } + + private void Update() + { + + } } } +