Snaparazzi/Assets/Scripts/Menu.cs

18 lines
293 B
C#
Raw Normal View History

2024-01-26 22:07:49 +00: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 18:58:02 +00:00
2024-01-26 22:07:49 +00:00
}
}