_xiaofang/xiaofang/Assets/Script/UI/EventInfo.cs
2024-12-01 19:27:05 +08:00

17 lines
291 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class EventInfo : MonoBehaviour
{
public int eventId;
public Text eventName;
public Image maskImage;
public bool isOpen=true;
void Start()
{
}
}