Networking Continued, template classes finished. Next I'll add actual functionality.

This commit is contained in:
u8sand_cp 2010-07-18 20:30:57 -07:00
parent 3227210590
commit 27a1f617b8
3 changed files with 54 additions and 8 deletions

View file

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MudEngine.Networking.Socket;
// TODO: everything D:
namespace MudEngine.Networking
{
class ClientSocket : Socket
{
public ClientSocket()
{
}
public ~ClientSocket()
{
}
public string ip;
}
}