mirror of https://github.com/axmolengine/axmol.git
13 lines
292 B
C
13 lines
292 B
C
#ifndef __COCOSNATIVEACTIVITY_H__
|
|
#define __COCOSNATIVEACTIVITY_H__
|
|
|
|
/**
|
|
* This is the interface to the Android native activity
|
|
*/
|
|
|
|
void enableAccelerometerJni(void);
|
|
void disableAccelerometerJni(void);
|
|
void setAccelerometerIntervalJni(float interval);
|
|
|
|
#endif // __COCOSNATIVEACTIVITY_H__
|