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

@ -2,7 +2,10 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MudEngine.Networking.Socket;
using MudEngine.Networking.ServerSocket;
using MudEngine.Networking.ClientSocket;
// TODO: everything D:
namespace MudEngine.Networking
{
@ -16,6 +19,6 @@ namespace MudEngine.Networking
}
private Socket server;
private ServerSocket server;
}
}