diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee5ad1db..d7aab588 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,12 +4,14 @@ on: push: paths: - "**.cpp" + - "**.hpp" - "**.cmake" - "**/CMakeLists.txt" - ".github/workflows/ci.yml" pull_request: paths: - "**.cpp" + - "**.hpp" - "**.cmake" - "**/CMakeLists.txt" - ".github/workflows/ci.yml" diff --git a/src/headers/gameboard.hpp b/src/headers/gameboard.hpp index 4f60a718..b512ebb9 100644 --- a/src/headers/gameboard.hpp +++ b/src/headers/gameboard.hpp @@ -1,12 +1,11 @@ #ifndef GAMEBOARD_H #define GAMEBOARD_H +#include "point2d.hpp" #include "tile.hpp" #include #include -struct point2D_t; - namespace Game { struct GameBoard {