replace music system by sound system

This commit is contained in:
Askou
2021-06-07 11:46:27 +02:00
parent 8e93e84006
commit fb9e5710b1
3 changed files with 33 additions and 33 deletions
@@ -0,0 +1,31 @@
//
// 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
{
public:
//! @inherit
void onFixedUpdate(WAL::Entity &entity) override;
//! @brief ctor
SoundManagerSystem(WAL::Wal &wal, RAY::Window &window);
//! @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;
};
}