-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Re-place .cpp and .hpp files into the right folders #18
base: develop
Are you sure you want to change the base?
Changes from all commits
13817ce
f2d867f
0be1b5c
6a38c58
9715098
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not a big fan of using the absolute path to be honest... |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#pragma once | ||
|
||
#include <include/utils.hpp> | ||
#include "../include/utils.hpp" | ||
|
||
class Tile { | ||
public: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ namespace utils { | |
int y; | ||
}; | ||
|
||
typedef enum Direction : uint8_t { | ||
enum Direction : uint8_t { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perfetto |
||
up = 0b00000001, | ||
down = 0b00000010, | ||
left = 0b00000100, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same af for the Tile.hpp comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is to be sure that warnings will be solved and not left there for "the future people"?