Fixing compilation

This commit is contained in:
Zoe Roux
2021-05-24 16:58:11 +02:00
parent ee2f2d5bef
commit 199b286978
29 changed files with 121 additions and 104 deletions
@@ -5,21 +5,19 @@
#pragma once
#include "lib/wal/sources/System/System.hpp"
#include "System/System.hpp"
namespace Bomberman
namespace BBM
{
//! @brief A system to handle Controllable entities.
class ControllableSystem : public WAL::System
{
public:
//! @inherit
const std::type_info &getComponent() const override;
//! @inherit
void onFixedUpdate(WAL::Entity &entity) override;
//! @brief A default constructor
ControllableSystem() = default;
ControllableSystem();
//! @brief A Controllable system is copy constructable
ControllableSystem(const ControllableSystem &) = default;
//! @brief A default destructor