diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-10-01 20:50:28 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-10-01 20:50:28 -0400 |
commit | af39f2e08b0503db723ae707a5c7278d8c85f812 (patch) | |
tree | ad6ab6e51e1a7e30d72a28e2bac51b210fd22f6c /src/engine.cpp | |
parent | bebc6e955114a0907c43df9a9c00f22b1f743446 (diff) |
Audio component loading, getting ready to play
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index b1d9a56..3fc4fdd 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -19,6 +19,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +#include "audio.hpp" #include "config.hpp" #include "engine.hpp" #include "gamestate.hpp" @@ -54,6 +55,7 @@ int Engine::init(void) systems.add<ScriptSystem>(entities, *(systems.system<WorldSystem>().get())); systems.add<PhysicsSystem>(); systems.add<TextSystem>(); + systems.add<AudioSystem>(); systems.configure(); // Load game script and entity data |