is snake v2

This commit is contained in:
Michal Utľák 2024-04-10 21:00:59 +02:00
parent bab6423fb9
commit b252054385

View File

@ -45,12 +45,10 @@ int is_snake(struct snake* snake,int x,int y){
if(pozicia->x == x && pozicia->y == y){
return 1;
}
else{
pozicia = pozicia->next;
}
return 0;
}
}
}
int step_state(struct state* st){
int nx = (st->snake->x + st->sx);