mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-05-06 21:27:37 +00:00
add map for SoundSystem and fix error in MusicComponent
This commit is contained in:
@@ -13,14 +13,14 @@
|
||||
|
||||
namespace BBM
|
||||
{
|
||||
class SoundManagerSystem : public WAL::System
|
||||
class SoundManagerSystem : public WAL::System<SoundComponent, ControllableComponent, HealthComponent>
|
||||
{
|
||||
public:
|
||||
//! @inherit
|
||||
void onFixedUpdate(WAL::Entity &entity) override;
|
||||
void onFixedUpdate(WAL::ViewEntity<SoundComponent, ControllableComponent, HealthComponent> &entity) override;
|
||||
|
||||
//! @brief ctor
|
||||
SoundManagerSystem();
|
||||
SoundManagerSystem(WAL::Wal &wal);
|
||||
//! @brief Default copy ctor
|
||||
SoundManagerSystem(const SoundManagerSystem &) = default;
|
||||
//! @brief Default dtor
|
||||
|
||||
Reference in New Issue
Block a user