mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-01 01:38:14 +00:00
quick cleanup
This commit is contained in:
+3
-1
@@ -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)
|
||||
|
||||
|
||||
@@ -19,10 +19,10 @@ namespace RAY
|
||||
public:
|
||||
virtual ~IDrawable() = default;
|
||||
|
||||
virtual void drawOn(Window &) = 0;
|
||||
virtual void drawOn(RAY::Window &) = 0;
|
||||
protected:
|
||||
private:
|
||||
};
|
||||
};p
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user