sdk.h 534 B

123456789101112131415161718192021
  1. //
  2. // Created by Administrator on 2021/5/10.
  3. //
  4. #ifndef SHOES_SDK_SDK_H
  5. #define SHOES_SDK_SDK_H
  6. #endif //SHOES_SDK_SDK_H
  7. #include<stdint.h>
  8. void gameInit(int gameType, int count);
  9. void gameProcess(int id, uint8_t *buf, int len, int *result);
  10. void getGameResult(int id, int *result);
  11. void getGameDataStr(int id, char* result);
  12. int getInteractionCMD();
  13. void getGameVersion(char* version);
  14. int getStepFreq(int id);
  15. int getStepCount(int id);
  16. int getMotionCount(int id, int type);
  17. int getGameStepVel(int id);
  18. int NativeGetAttX(int id);