_xiaofang/xiaofang/Assets/yhj/scripts/ClassMate.cs

18 lines
385 B
C#
Raw Normal View History

2024-12-01 19:24:07 +08:00
using System;
2024-11-30 17:43:21 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class ClassMate : MonoBehaviour
{
2024-12-01 19:24:07 +08:00
public JueseChoicePop jueseChoicePop;
2024-12-24 18:51:35 +08:00
public int id;
public string name;
2024-11-30 17:43:21 +08:00
public Text classmatename;
2024-12-01 22:24:03 +08:00
public string s;
2024-12-01 19:24:07 +08:00
public Button otherButton;
public Button button;
2024-12-24 18:51:35 +08:00
public bool isBeSet = true;
2024-11-30 17:43:21 +08:00
}