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