WASD / Arrow key to move
reach 10 levels to win
> asteroids ('0') randomly reinitialize each level
> dont touch the wall or the asteroids
changePos function is a utility function for move function
bool changePos(char *nmap, char *omap) {
// --
}
void moveUp(char map[][mapX]) {
if(!changePos(/* argument */))
endscreen();
}fairly easy to understand tbh