blob: 42cfead5dce3e0efff762f4c85ceceedcf7875ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#if defined(__ANDROID__)
#include "android/nxcondition.h"
#elif defined(_WIN32)
#include "win/nxcondition.h"
#elif defined(__APPLE__)
#include "osx/nxcondition.h"
#elif defined(__linux__)
#include "linux/nxcondition.h"
#endif
|