You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
450 B

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.Networking;
  5. using Networking.Server;
  6. using Networking;
  7. public class portalTesting : MonoBehaviour
  8. {
  9. public ClientList clientDataList;
  10. public List<ClientData> ConnectedClients;
  11. public PortalSetup ps;
  12. void Start(){
  13. ConnectedClients = clientDataList.ConnectedClients;
  14. }
  15. // Update is called once per frame
  16. void Update()
  17. {
  18. }
  19. }