Fling Engine  0.00.1
Fling Engine is a game engine written in Vulkan
FlingExports.h
Go to the documentation of this file.
1 #pragma once
2 
4 // General platform abstraction
5 
6 #ifdef _WIN32
7 
8 #define FLING_WINDOWS
9 #include "FlingWindowsExports.h"
10 
11 #elif __APPLE__
12 
13 #define FLING_APPLE
14 
15 #error Fling does not support Apple... does it?
16 
17 #elif __linux__
18 
19 #define FLING_LINUX
20 #include "FlingLinuxExports.h"
21 
22 #else
23 
24 # error "Unknown compiler"
25 
26 #endif