Snaparazzi/Assets/Scripts/Menu.cs
2024-01-26 23:07:49 +01:00

20 lines
361 B
C#

using System.Collections;
using System.Collections.Generic;
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()
{
}
}