Cronous Emulation Server Daemon

Client Constructor 

Initializes a new client.

[Visual Basic]
Public Sub New( _ 
   ByVal gs As GameServer, _ 
   ByVal cc As ClientConnection _ 
)
[C#]
public Client(
   GameServer gs,
   ClientConnection cc
);
[C++]
public: Client(
   GameServer* gs,
   ClientConnection* cc
);
[JScript]
public function Client(
   GameServer gs,
   ClientConnection cc
);

Parameters

gs
Game server.
cc
Client connection.

See Also

Client Class | croemud.game Namespace