You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
489 B

  1. #ifndef TEST_H
  2. #define TEST_H
  3. #include "global.h"
  4. void turn_direction_right(Direction *direction);
  5. void lab_move(unsigned short *x, unsigned short *y, Direction direction);
  6. void set_wall(Field_State** field, unsigned short x, unsigned short y);
  7. void init_field(Field_State** field, unsigned short len_x, unsigned short len_y);
  8. short lab_can_move(Field_State** field, unsigned short x, unsigned short y, Direction direction, unsigned short len_x, unsigned short len_y);
  9. #endif // TEST_H