Fling Engine
0.00.1
Fling Engine is a game engine written in Vulkan
FlingEngine
Platform
inc
Platform.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 "
PlatformWindows.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 "
PlatformLinux.h
"
21
22
#else
23
24
# error "Unknown compiler"
25
26
#endif
27
28
29
// #TODO: Any other platform (i.e. consoles, android, etc)
PlatformWindows.h
PlatformLinux.h
Generated by
1.8.13