19 lines
277 B
C#
19 lines
277 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
|
|
namespace OpenRa.Network
|
|
{
|
|
public class Connection
|
|
{
|
|
public Connection( IPEndPoint ip )
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
|
|
}
|
|
}
|