mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 00:49:19 +02:00
12 lines
280 B
C++
12 lines
280 B
C++
#pragma once
|
|
|
|
#include "BaseSystem.h"
|
|
|
|
// Drives SoundComponent: starts/stops sound_source playback and keeps
|
|
// position, volume and pitch in sync with the entity's Transform.
|
|
class SoundSystem : public BaseSystem
|
|
{
|
|
public:
|
|
void Update(ECWorld& world, float dt) override;
|
|
};
|