13 lines
230 B
C++
13 lines
230 B
C++
|
|
#include "RegisterFeatures.h"
|
|
|
|
extern "C" void UnityEnableGyroscope(bool value);
|
|
extern "C" void UnityEnableStylusTouch(bool value);
|
|
|
|
void RegisterFeatures()
|
|
{
|
|
UnityEnableGyroscope(true);
|
|
UnityEnableStylusTouch(true);
|
|
}
|
|
|