Ya se detectan las rampas en el mapa

This commit is contained in:
2022-09-09 19:02:36 +02:00
parent 36fc848779
commit 2ccb02258c
3 changed files with 120 additions and 5 deletions

View File

@@ -46,6 +46,12 @@ struct v_line_t
int x, y1, y2;
};
// Estructura para definir una linea
struct line_t
{
int x1, x2, y1, y2;
};
// Estructura para definir un color
struct color_t
{