123456789101112131415161718192021 |
- //
- // Created by Administrator on 2021/5/10.
- //
- #ifndef SHOES_SDK_SDK_H
- #define SHOES_SDK_SDK_H
- #endif //SHOES_SDK_SDK_H
- #include<stdint.h>
- void gameInit(int gameType, int count);
- void gameProcess(int id, uint8_t *buf, int len, int *result);
- void getGameResult(int id, int *result);
- void getGameDataStr(int id, char* result);
- int getInteractionCMD();
- void getGameVersion(char* version);
- int getStepFreq(int id);
- int getStepCount(int id);
- int getMotionCount(int id, int type);
- int getGameStepVel(int id);
- int NativeGetAttX(int id);
|