Dawn/src/dawn/audio/_AudioManager.hpp
2023-01-17 10:13:08 -08:00

25 lines
469 B
C++

// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
#include "assert/assert.hpp"
namespace Dawn {
class DawnGame;
class IAudioManager {
public:
DawnGame *game;
IAudioManager(DawnGame *game) {
assertNotNull(game);
this->game = game;
}
virtual void init() = 0;
virtual void update() = 0;
};
}