mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
18 lines
No EOL
224 B
C++
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:
|
|
|
|
};
|
|
}; |