geode/loader/include/Geode/cocos/cocos2dx/platform/CCDevice.h
2022-07-30 19:24:03 +03:00

29 lines
349 B
C++

#ifndef __CCDEVICE_H__
#define __CCDEVICE_H__
#include "CCPlatformMacros.h"
NS_CC_BEGIN
/**
@js NA
@lua NA
*/
class CC_DLL CCDevice
{
GEODE_FRIEND_MODIFY
private:
CCDevice();
public:
/**
* Gets the DPI of device
* @return The DPI of device.
*/
static int getDPI();
};
NS_CC_END
#endif /* __CCDEVICE_H__ */