LearnWithTouch/App/LearnWithTouch_ios/Libraries/RegisterFeatures.cpp

13 lines
232 B
C++

#include "RegisterFeatures.h"
extern "C" void UnityEnableGyroscope(bool value);
extern "C" void UnityEnableStylusTouch(bool value);
void RegisterFeatures()
{
UnityEnableGyroscope(false);
UnityEnableStylusTouch(false);
}