quick cleanup

This commit is contained in:
Clément Le Bihan
2021-05-26 16:54:58 +02:00
parent 7da7e50f68
commit 0000136381
3 changed files with 7 additions and 4 deletions
+3 -1
View File
@@ -26,12 +26,14 @@ set(SOURCES
sources/System/Renderer/Renderer3DSystem.hpp
sources/System/Renderer/Renderer2DSystem.hpp
sources/Util/Utils.cpp
sources/System/Renderer/RenderScreenSystem.hpp
sources/Util/Utils.hpp
)
add_executable(bomberman
sources/main.cpp
${SOURCES}
sources/System/Renderer/RenderScreenSystem.hpp sources/Util/Utils.hpp)
)
target_include_directories(bomberman PUBLIC sources)
target_link_libraries(bomberman PUBLIC wal ray)
+2 -2
View File
@@ -19,10 +19,10 @@ namespace RAY
public:
virtual ~IDrawable() = default;
virtual void drawOn(Window &) = 0;
virtual void drawOn(RAY::Window &) = 0;
protected:
private:
};
};p
}
}
+2 -1
View File
@@ -11,8 +11,9 @@ namespace BBM
{
struct Utils
{
//! @brief Convert BBM Vector3f to RAY Vector3
static RAY::Vector3 toRAY(const BBM::Vector3f &wal);
p
//! @brief default ctor
Utils() = default;
//! @brief Default copy ctor