-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.h
73 lines (49 loc) · 1.12 KB
/
stdafx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef STDAFX_H
#define STDAFX_H
#ifdef _WIN64
#else
#endif
#ifdef _DEBUG
#pragma comment(lib,"sfml-main-d.lib")
#pragma comment(lib,"sfml-graphics-d.lib")
#pragma comment(lib,"sfml-window-d.lib")
#pragma comment(lib,"sfml-system-d.lib")
#pragma comment(lib,"sfml-audio-d.lib")
#pragma comment(lib,"sfml-network-d.lib")
#else
#pragma comment(lib,"sfml-main.lib")
#pragma comment(lib,"sfml-graphics.lib")
#pragma comment(lib,"sfml-window.lib")
#pragma comment(lib,"sfml-system.lib")
#pragma comment(lib,"sfml-audio.lib")
#pragma comment(lib,"sfml-network.lib")
#endif
#include<SFML/Audio.hpp>
#include<SFML/Graphics.hpp>
#include<SFML/Network.hpp>
#include<SFML/System.hpp>
#include<SFML/Window.hpp>
#include<SFML/OpenGL.hpp>
#include<string>
#include<vector>
#include<list>
enum class ErrorType {
Unknown,
FileNotFound,
NullptrError,
IndexOutOfBounds,
IOException
};
[[noreturn]] void except(ErrorType errorType);
//#define SERVER
#define CLIENT
//#define TEST
#ifdef SERVER
#include"Server.h"
#elif defined CLIENT
#include"Client.h"
#elif defined TEST
#include"Test.h"
#include"Server.h"
#endif
#endif//STDAFX_H