1#pragma once
2
3namespace al {
4class AudioKeeper;
5
6class IUseAudioKeeper {
7public:
8 virtual AudioKeeper* getAudioKeeper() const = 0;
9};
10} // namespace al
11