_xiaofang/xiaofang/Assets/Script/UI/EventInfo.cs

19 lines
325 B
C#
Raw Normal View History

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;
public Text eventName;
2024-12-05 17:56:33 +08:00
public Image eventImage;
public Image maskImage;
2024-12-05 17:56:33 +08:00
public bool IsOpen=true;
2024-11-25 17:15:16 +08:00
void Start()
{
2024-11-25 17:15:16 +08:00
}
}