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