Added initialization, data type defenitons and started with TcpClient

This commit is contained in:
xX-TheDoctor-Xx
2016-07-16 23:26:56 +01:00
parent d9be5d3f2b
commit 97262ee8c6
20 changed files with 595 additions and 36 deletions

17
include/Config.hpp Normal file
View File

@ -0,0 +1,17 @@
#ifndef CONFIG_HPP
#define CONFIG_HPP
#ifdef _MSC_VER
#pragma once
#endif
struct Config
{
static void SetUsingConsole(bool value);
static bool GetUsingConsole();
private:
static bool using_console;
};
#endif