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
+3 -5
View File
@@ -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 Health entities.
class HealthSystem : public WAL::System
{
public:
//! @inherit
const std::type_info &getComponent() const override;
//! @inherit
void onFixedUpdate(WAL::Entity &entity) override;
//! @brief A default constructor
HealthSystem() = default;
HealthSystem();
//! @brief A Health system is copy constructable
HealthSystem(const HealthSystem &) = default;
//! @brief A default destructor