- Tcp Server functionality

This commit is contained in:
u8sand_cp 2010-07-22 20:13:55 -07:00
parent f7756e2032
commit 49c581840a
4 changed files with 48 additions and 8 deletions

View file

@ -33,5 +33,12 @@ namespace MudEngine.GameObjects.Characters
//the command off to the command engine for execution.
return CommandEngine.ExecuteCommand(command, character, game, room);
}
public void Initialize(ref MudEngine.Networking.ClientSocket rcs)
{
sock = rcs;
}
public MudEngine.Networking.ClientSocket sock;
}
}