mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
10 lines
229 B
C
10 lines
229 B
C
|
#pragma once
|
||
|
|
||
|
#include "CCPlatformConfig.h"
|
||
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
||
|
#include "third_party/win32/zlib/zlib.h"
|
||
|
#else
|
||
|
#include <zlib.h>
|
||
|
// i don't know where other platform get zlib
|
||
|
#endif
|