mirror of https://github.com/axmolengine/axmol.git
Disabled console for wp8/winrt until networking code is added
This commit is contained in:
parent
6a4d459c77
commit
347f91fcb6
|
@ -68,6 +68,8 @@ void CC_DLL log(const char * format, ...) CC_FORMAT_PRINTF(1, 2);
|
|||
scheduler->performFunctionInCocosThread( ... );
|
||||
```
|
||||
*/
|
||||
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_WINRT) && (CC_TARGET_PLATFORM != CC_PLATFORM_WP8)
|
||||
class CC_DLL Console
|
||||
{
|
||||
public:
|
||||
|
@ -142,6 +144,7 @@ private:
|
|||
CC_DISALLOW_COPY_AND_ASSIGN(Console);
|
||||
};
|
||||
|
||||
#endif /* #if (CC_TARGET_PLATFORM != CC_PLATFORM_WINRT) && (CC_TARGET_PLATFORM != CC_PLATFORM_WP8) */
|
||||
NS_CC_END
|
||||
|
||||
#endif /* defined(__CCCONSOLE_H__) */
|
||||
|
|
Loading…
Reference in New Issue