aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net/je_net_manager.cpp
blob: 553f9cb7f86e88ca2bb8913db1b9db772ae1dcc6 (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::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