Files
Bomberman/sources/System/EndCondition/EndConditionSystem.hpp
T
2021-06-15 10:42:56 +02:00

27 lines
669 B
C++

#pragma once
#include "System/System.hpp"
#include "Component/Score/ScoreComponent.hpp"
#include "Component/Health/HealthComponent.hpp"
#include "Wal.hpp"
namespace BBM
{
class EndConditionSystem : public WAL::System<ScoreComponent, HealthComponent>
{
public:
//! @inherit
void onSelfUpdate() override;
//! @brief ctor
EndConditionSystem(WAL::Wal &wal);
//! @brief Default copy ctor
EndConditionSystem(const EndConditionSystem &) = default;
//! @brief Default dtor
~EndConditionSystem() override = default;
//! @brief A SoundManager screen system can't be assigned.
EndConditionSystem &operator=(const EndConditionSystem &) = delete;
};
}