13 lines
251 B
C#
13 lines
251 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class SchoolInfo : MonoBehaviour
|
|
{
|
|
public int schoolId;
|
|
public Text schoolName;
|
|
public Image maskImage;
|
|
public bool isOpen;
|
|
}
|