src/proto2/NetworkClient.hh
author terom
Sat, 08 Nov 2008 18:02:58 +0000
changeset 21 32c6cc55256a
parent 5 617813994ab1
child 22 b70d30e1b0fe
permissions -rw-r--r--
change proto2 network code to use CL_NetSession
#ifndef NETWORKCLIENT_HH
#define NETWORKCLIENT_HH

#include "Network.hh"
#include "GameState.hh"

class NetworkClient : public NetworkCore {
	private:
		CL_NetComputer server;

	public:
		NetworkClient (GameState &state, const CL_IPAddress &connect_to);
};

#endif