TransportTCP.cs 247 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 using UnityEngine; using System.Collections; using System.Net; using System.Net.Sockets; using System.Threading; public class TransportTCP : MonoBehaviour { // 소켓 액세스 // 리스너 소켓 private Socket m_listener = null; }