mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-05 18:10:09 +03:00
24 lines
377 B
C
24 lines
377 B
C
//
|
|
// PlatformDefinitions.h
|
|
// Minecraft
|
|
//
|
|
// Created by Brent on 11/27/23.
|
|
//
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifdef __APPLE__
|
|
#include <TargetConditionals.h>
|
|
#endif
|
|
|
|
#if TARGET_OS_SIMULATOR || TARGET_IPHONE_SIMULATOR
|
|
# define MC_TARGET_OS_SIMULATOR 1
|
|
#else
|
|
#endif
|
|
#if TARGET_OS_MAC
|
|
# define MC_TARGET_OS_MAC 1
|
|
#elif TARGET_OS_IOS && TARGET_OS_IPHONE
|
|
# define MC_TARGET_OS_IOS 1
|
|
#endif
|