Snaparazzi/Assets/Scripts/ScoringPage.cs

12 lines
202 B
C#
Raw Normal View History

2024-01-29 22:49:48 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ScoringPage : MonoBehaviour
{
public void Initialize()
{
gameObject.SetActive(true);
}
}