src/proto2/NetworkClient.hh
changeset 21 32c6cc55256a
parent 5 617813994ab1
child 22 b70d30e1b0fe
--- a/src/proto2/NetworkClient.hh	Fri Nov 07 21:40:32 2008 +0000
+++ b/src/proto2/NetworkClient.hh	Sat Nov 08 18:02:58 2008 +0000
@@ -1,12 +1,15 @@
 #ifndef NETWORKCLIENT_HH
 #define NETWORKCLIENT_HH
 
-class NetworkClient {
+#include "Network.hh"
+#include "GameState.hh"
+
+class NetworkClient : public NetworkCore {
 	private:
-		GameState *state;
-	
+		CL_NetComputer server;
+
 	public:
-		NetworkClient (GameState *state);
+		NetworkClient (GameState &state, const CL_IPAddress &connect_to);
 };
 
 #endif