aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net/net_manager.cpp
blob: 53ddfbcec86090f3fd6eb816483649fe72093697 (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 "net_manager.h"

namespace JinEngine
{
	namespace Net
	{

		bool NetManager::startSystem(const SettingBase* setting)
		{
		#ifdef _WIN32
		#if jin_net == jin_net_tekcos 
			tk_init();
		#endif 
		#endif
			return true;
		}

		void NetManager::quitSystem()
		{

		}

	} // namespace Net
} // namespace JinEngine