-
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?
Conversation
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.
Small things
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.
I am not a big fan of using the absolute path to be honest...
In my branches I used for example:
#include <utils.hpp>
and it worked. What do you think?
@@ -1,6 +1,7 @@ | |||
cmake_minimum_required(VERSION 3.27) | |||
project("Pokemon_Project" VERSION 999.0.0) | |||
set(CMAKE_CXX_STANDARD 17) | |||
set(CMAKE_COMPILE_WARNING_AS_ERROR ON) |
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"?
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
Perfetto
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.
Same af for the Tile.hpp comment
No description provided.