20 lines
219 B
C++
20 lines
219 B
C++
|
/*
|
||
|
* gclient.cpp
|
||
|
*
|
||
|
* Created on: 2014-10-19
|
||
|
* Author: hanshuo
|
||
|
*/
|
||
|
|
||
|
#include"../Server/Client.h"
|
||
|
|
||
|
int main(int argc, char * argv[])
|
||
|
{
|
||
|
Client client;
|
||
|
|
||
|
client.run();
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|