From fec46516396030bd07cce9ad3b1c483b1b93fa8f Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 27 Jan 2025 00:20:36 +0100 Subject: [PATCH] rename `shapes.h` to `tetromino/shapes.h` --- src/game/game.c | 2 +- src/game/{ => tetromino}/shapes.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/game/{ => tetromino}/shapes.h (100%) diff --git a/src/game/game.c b/src/game/game.c index 5ee4a33..3ff18f8 100644 --- a/src/game/game.c +++ b/src/game/game.c @@ -7,7 +7,7 @@ #include "../main.h" #include "../window/colour.h" -#include "shapes.h" +#include "./tetromino/shapes.h" static void clear_row(Row* row, uint8_t y) { diff --git a/src/game/shapes.h b/src/game/tetromino/shapes.h similarity index 100% rename from src/game/shapes.h rename to src/game/tetromino/shapes.h