Files
Bomberman/sources/System/Sound/PlayerSoundManagerSystem.hpp
2021-06-08 14:52:03 +02:00

32 lines
899 B
C++

//
// Created by Tom Augier on 05/06/2021
//
#pragma once
#include "System/System.hpp"
#include "Window.hpp"
#include "Component/Sound/SoundComponent.hpp"
#include "Component/Health/HealthComponent.hpp"
#include <Component/Controllable/ControllableComponent.hpp>
#include "Wal.hpp"
namespace BBM
{
class SoundManagerSystem : public WAL::System<SoundComponent, ControllableComponent, HealthComponent>
{
public:
//! @inherit
void onFixedUpdate(WAL::ViewEntity<SoundComponent, ControllableComponent, HealthComponent> &entity) override;
//! @brief ctor
SoundManagerSystem(WAL::Wal &wal);
//! @brief Default copy ctor
SoundManagerSystem(const SoundManagerSystem &) = default;
//! @brief Default dtor
~SoundManagerSystem() override = default;
//! @brief A SoundManager screen system can't be assigned.
SoundManagerSystem &operator=(const SoundManagerSystem &) = delete;
};
}