geode/loader/include/Geode/cocos/platform/CCDevice.h

30 lines
349 B
C
Raw Normal View History

2022-07-30 12:24:03 -04:00
#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__ */