first pr reviews fixes

This commit is contained in:
Clément Le Bihan
2021-05-26 17:07:43 +02:00
parent 8cdae3a3fc
commit 864e75c555
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
namespace BBM
{
//! @brief A system to handle movable entities. This system update velocity based on accelerations and positions based on velocity.
class MovableSystem : public WAL::System
class MovableSystem : public WAL::System
{
public:
//! @inherit
@@ -20,7 +20,7 @@ namespace BBM
public:
//! @brief ctor
explicit RenderScreenSystem(RAY::Window &window, T &camera)
: WAL::System({typeid(RenderScreenSystem)}),
: WAL::System({}),
_window(window),
_camera(camera)
{