MudEngine:

- Added Look and Walk Commands, however they are not fully implemented.
 - Corrected Networking classes having a public de-constructor. These must be private or the compiler fails.
 - Corrected Networking classes using an incorrect 'using' statement. You cannot reference classes in the statement, must only reference the namespace itself (i.e. using MUDEngine.Networking).
 - Removed using statement for Networking in the Networking classes as all classes created within that namespace automatically are within the same scope.
This commit is contained in:
Scionwest_cp 2010-07-18 21:25:12 -07:00
parent 9debc62ba4
commit 6987d8178f
8 changed files with 105 additions and 9 deletions

View file

@ -2,8 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MudEngine.Networking.ServerSocket;
using MudEngine.Networking.ClientSocket;
using MudEngine.Networking;
// TODO: everything D:
@ -14,7 +13,8 @@ namespace MudEngine.Networking
public Server()
{
}
public ~Server()
~Server()
{
}