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
12 lines
489 B
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
#include "global.h"
|
|
|
|
void turn_direction_right(Direction *direction);
|
|
void lab_move(unsigned short *x, unsigned short *y, Direction direction);
|
|
void set_wall(Field_State** field, unsigned short x, unsigned short y);
|
|
void init_field(Field_State** field, unsigned short len_x, unsigned short len_y);
|
|
short lab_can_move(Field_State** field, unsigned short x, unsigned short y, Direction direction, unsigned short len_x, unsigned short len_y);
|
|
|
|
#endif // TEST_H
|