is snake
This commit is contained in:
parent
69eaba6642
commit
bab6423fb9
16
cv9/snake.c
16
cv9/snake.c
@ -35,7 +35,21 @@ void free_snake(struct snake* sn){
|
|||||||
}
|
}
|
||||||
|
|
||||||
int is_snake(struct snake* snake,int x,int y){
|
int is_snake(struct snake* snake,int x,int y){
|
||||||
return 0;
|
if(snake == NULL){
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct snake* pozicia = snake;
|
||||||
|
|
||||||
|
while(pozicia != NULL){
|
||||||
|
if(pozicia->x == x && pozicia->y == y){
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int step_state(struct state* st){
|
int step_state(struct state* st){
|
||||||
|
Loading…
Reference in New Issue
Block a user