mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-30 04:24:17 +00:00
11 lines
156 B
C++
11 lines
156 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
class AudioKeeper;
|
|
|
|
class IUseAudioKeeper {
|
|
public:
|
|
virtual AudioKeeper* getAudioKeeper() const = 0;
|
|
};
|
|
} // namespace al
|