Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions src/headers/gameboard.hpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#ifndef GAMEBOARD_H
#define GAMEBOARD_H

#include "point2d.hpp"
#include "tile.hpp"
#include <tuple>
#include <vector>

struct point2D_t;

namespace Game {

struct GameBoard {
Expand Down