GameServer - Merged with Input, Added some athur info in headers
This commit is contained in:
parent
cce037783d
commit
85ebe3a7ca
|
@ -1,3 +1,6 @@
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
// Created by [Dennis Andersen] [2013]
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
#include "..\GameLobby.h"
|
#include "..\GameLobby.h"
|
||||||
|
|
||||||
using namespace DanBias;
|
using namespace DanBias;
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
// Created by [Dennis Andersen] [2013]
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
#ifndef INPUT_INPUT_H
|
||||||
|
#define INPUT_INPUT_H
|
||||||
|
|
||||||
|
#include "InputManager.h"
|
||||||
|
#include "InputObject.h"
|
||||||
|
#include "Keyboard.h"
|
||||||
|
#include "Mouse.h"
|
||||||
|
|
||||||
|
#endif // !INPUT_INPUT_H
|
|
@ -29,6 +29,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="Include\Common.h" />
|
<ClInclude Include="Include\Common.h" />
|
||||||
|
<ClInclude Include="Include\Input.h" />
|
||||||
<ClInclude Include="Include\InputManager.h" />
|
<ClInclude Include="Include\InputManager.h" />
|
||||||
<ClInclude Include="Include\InputObject.h" />
|
<ClInclude Include="Include\InputObject.h" />
|
||||||
<ClInclude Include="Include\Keyboard.h" />
|
<ClInclude Include="Include\Keyboard.h" />
|
||||||
|
|
|
@ -68,5 +68,8 @@
|
||||||
<ClInclude Include="Include\PreReq.h">
|
<ClInclude Include="Include\PreReq.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="Include\Input.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -1,3 +1,6 @@
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Created by Dennis Andersen 2014 //
|
||||||
|
//////////////////////////////////////
|
||||||
#ifndef NETWORK_API_NETWORK_API_PREPROCESSOR_H
|
#ifndef NETWORK_API_NETWORK_API_PREPROCESSOR_H
|
||||||
#define NETWORK_API_NETWORK_API_PREPROCESSOR_H
|
#define NETWORK_API_NETWORK_API_PREPROCESSOR_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Created by Pontus Fransson 2013 //
|
||||||
|
// Modified by Dennis Andersen 2014 //
|
||||||
|
//////////////////////////////////////
|
||||||
#ifndef INCLUDE_WINSOCK_LIB
|
#ifndef INCLUDE_WINSOCK_LIB
|
||||||
#define INCLUDE_WINSOCK_LIB
|
#define INCLUDE_WINSOCK_LIB
|
||||||
#pragma comment(lib, "ws2_32.lib")
|
#pragma comment(lib, "ws2_32.lib")
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Created by Pontus Fransson 2013 //
|
||||||
|
// Modified by Dennis Andersen 2014 //
|
||||||
|
//////////////////////////////////////
|
||||||
|
|
||||||
#ifndef INCLUDE_WINSOCK_LIB
|
#ifndef INCLUDE_WINSOCK_LIB
|
||||||
#define INCLUDE_WINSOCK_LIB
|
#define INCLUDE_WINSOCK_LIB
|
||||||
#pragma comment(lib, "ws2_32.lib")
|
#pragma comment(lib, "ws2_32.lib")
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
// Created by [Dennis Andersen] [2013]
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
#ifndef NETWORK_API_SERVEREVENT_H
|
#ifndef NETWORK_API_SERVEREVENT_H
|
||||||
#define NETWORK_API_SERVEREVENT_H
|
#define NETWORK_API_SERVEREVENT_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue