TransportUDP.cs 289 Bytes
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;
}