10 lines
208 B
C++
10 lines
208 B
C++
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
#include <string>
|
|
|
|
// Runs the client (with OpenGL rendering and network handling).
|
|
void runClient(const std::string& host, const std::string& portStr);
|
|
|
|
#endif // CLIENT_H
|