SuperMarioOdysseyOnline/include/al/audio/AudioKeeper.h

18 lines
224 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
#pragma once
namespace al
{
class AudioKeeper;
class IUseAudioKeeper
{
public:
virtual al::AudioKeeper* getAudioKeeper() const = 0;
};
class AudioKeeper
{
public:
};
};