mirror of https://github.com/axmolengine/axmol.git
13 lines
240 B
C
13 lines
240 B
C
|
#ifndef __DENSHION_PLATFORM_H__
|
||
|
#define __DENSHION_PLATFORM_H__
|
||
|
|
||
|
#if defined(_TRANZDA_VM_) || defined(UNDER_UPHONE)
|
||
|
#define _PLATFORM_UPHONE
|
||
|
#endif
|
||
|
|
||
|
#ifdef _PLATFORM_UPHONE
|
||
|
#include "uPhone/SoundPlayer.h"
|
||
|
#endif
|
||
|
|
||
|
#endif
|