19 lines
325 B
C#
19 lines
325 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 eventImage;
|
|
public Image maskImage;
|
|
public bool IsOpen=true;
|
|
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
}
|