class PedazoSerpiente { | |
public: | |
int x, y; | |
PedazoSerpiente(int a, int b) { | |
x = a; y = b; | |
} | |
PedazoSerpiente() { | |
} | |
}; | |
PedazoSerpiente serpiente[MAXIMA_LONGITUD_SERPIENTE]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment