UserChooseSceneItem.cs 409 B

123456789101112131415161718192021222324
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class UserChooseSceneItem : MonoBehaviour
  6. {
  7. public Toggle tg;
  8. //³¡¾°ID
  9. public string id;
  10. public Text itemName;
  11. // Start is called before the first frame update
  12. void Start()
  13. {
  14. }
  15. // Update is called once per frame
  16. void Update()
  17. {
  18. }
  19. }