- 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.
21 lines
291 B
C#
21 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
// TODO: everything D:
|
|
|
|
namespace MudEngine.Networking
|
|
{
|
|
class Socket
|
|
{
|
|
public Socket()
|
|
{
|
|
}
|
|
|
|
~Socket()
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|