2024-01-26 23:07:49 +01:00
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
|
|
public class Menu : MonoBehaviour
|
|
|
|
{
|
|
|
|
// Start is called before the first frame update
|
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
transform.GetComponent<Image>().color = Color.blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
2024-01-27 19:58:02 +01:00
|
|
|
|
2024-01-26 23:07:49 +01:00
|
|
|
}
|
|
|
|
}
|