testGame.cpp 404 B

12345678910111213141516171819202122
  1. #include "testGame.h"
  2. testGame::testGame()
  3. {
  4. for (int i = 0; i < 4; i++)
  5. {
  6. result[i] = 0;
  7. }
  8. }
  9. void testGame::Process(int* right_pos, int* right_att, int* right_acc, int right_zupt, int right_press,
  10. int* left_pos, int* left_att, int* left_acc, int left_zupt, int left_press,
  11. int jump, int down, int rssi)
  12. {
  13. }
  14. void testGame::getResult(int* matrix)
  15. {
  16. memcpy(matrix, result, 4 * sizeof(int));
  17. }