2024-11-25 17:15:16 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
|
|
public class EventInfo : MonoBehaviour
|
|
|
|
{
|
|
|
|
public int eventId;
|
2024-11-28 22:02:35 +08:00
|
|
|
public Text eventName;
|
|
|
|
public Image maskImage;
|
2024-12-01 19:27:05 +08:00
|
|
|
public bool isOpen=true;
|
2024-11-25 17:15:16 +08:00
|
|
|
void Start()
|
|
|
|
{
|
2024-11-28 22:02:35 +08:00
|
|
|
|
2024-11-25 17:15:16 +08:00
|
|
|
}
|
|
|
|
}
|