mirror of
https://github.com/Steffo99/gravity-fusion.git
synced 2024-11-22 08:24:17 +00:00
7 lines
135 B
C#
7 lines
135 B
C#
using UnityEngine;
|
|
|
|
public class UpgradePanel : MonoBehaviour {
|
|
public void Start() {
|
|
gameObject.SetActive(false);
|
|
}
|
|
}
|