Snaparazzi/Assets/Scripts/Menu.cs
2024-01-27 19:58:02 +01:00

18 lines
293 B
C#

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()
{
}
}