2024-11-25 17:15:16 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
2024-11-28 22:02:35 +08:00
|
|
|
using UnityEngine.UI;
|
2024-11-25 17:15:16 +08:00
|
|
|
|
|
|
|
public class SchoolInfo : MonoBehaviour
|
|
|
|
{
|
|
|
|
public int schoolId;
|
2024-11-28 22:02:35 +08:00
|
|
|
public Text schoolName;
|
|
|
|
public Image maskImage;
|
|
|
|
public bool isOpen;
|
2024-11-25 17:15:16 +08:00
|
|
|
}
|