public void Connect(IPEndPoint endPoint, Session session)
// 사용하는 부분
//connector.Connect(serverEndPoint, () => { return new GameSession(); });
GameSession gameSession = new GameSession();
connector.Connect(serverEndPoint, gameSession);
Func 형 말고 그냥 Session을 참조로 받아서 하면 안되나요? 코드가 돌긴 하던데..