TransportUDP.cs 289 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Net; using System.Net.Sockets; public class TransportUDP : MonoBehaviour { // 소켓 액세스 포인트들 // 클라이언트의 접속을 받을 소켓 private Socket m_socket = null; }