OtherUserList.cs 508 B

1234567891011121314151617181920212223
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class OtherUserList
  5. {
  6. private OtherUserList _instance;
  7. public OtherUserList _Instance {
  8. get {
  9. if (_instance == null) {
  10. _instance = new OtherUserList();
  11. }
  12. return _instance; }
  13. }
  14. public List<OtherUserView> otherUserList = new List<OtherUserView>();
  15. public List<OtherUserView> UpdateOtherList()
  16. {
  17. return otherUserList;
  18. }
  19. }