VersionFlow/Assets/Sample/ui.cs
2025-08-11 13:54:36 +08:00

12 lines
195 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ui : MonoBehaviour
{
public void Close()
{
Destroy(gameObject);
}
}