axmol/cocos2dx/platform/emscripten/CCDevice.cpp

21 lines
216 B
C++
Raw Normal View History

2013-04-09 09:21:53 +08:00
#include "platform/CCDevice.h"
NS_CC_BEGIN
int Device::getDPI()
2013-04-09 09:21:53 +08:00
{
return 160;
}
2013-09-12 20:56:57 +08:00
void Device::setAccelerometerEnabled(bool isEnabled)
{
}
void Device::setAccelerometerInterval(float interval)
{
}
2013-04-09 09:21:53 +08:00
NS_CC_END