testGame.h 537 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #ifndef __test_game_h__
  3. #define __test_game_h__
  4. #include <iostream>
  5. class testGame {
  6. public:
  7. testGame();
  8. //void Process(int* right_pos, int* right_att, int right_zupt, int* left_pos, int* left_att, int left_zupt, int jump, int down, int rssi);
  9. void 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. void getResult(int* matrix);
  13. private:
  14. int result[4];
  15. };
  16. #endif