SuperMarioOdysseyOnline/include/al/audio/AudioKeeper.h
2022-06-16 14:33:18 -07:00

18 lines
No EOL
224 B
C++

#pragma once
namespace al
{
class AudioKeeper;
class IUseAudioKeeper
{
public:
virtual al::AudioKeeper* getAudioKeeper() const = 0;
};
class AudioKeeper
{
public:
};
};