blob: c4f822eaab8656a752739b5dbe1b3f90c929529f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "je_net_manager.h"
namespace JinEngine
{
namespace Net
{
bool NetManager::initSystem(const SettingBase* setting)
{
#ifdef _WIN32
#if jin_net == jin_net_tekcos
tk_init();
#endif
#endif
return true;
}
void NetManager::quitSystem()
{
}
} // namespace Net
} // namespace JinEngine
|