16 lines
373 B
C#
16 lines
373 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ClassItem : MonoBehaviour
|
|
{
|
|
public Text classname;
|
|
public Button NoSelectedBtn;
|
|
public Button SelectedBtn;
|
|
public Text SelectedBtntext;
|
|
public Text NoSelectedBtntext;
|
|
public GameObject JuesechoicePop;
|
|
public bool isSet = false;
|
|
}
|