kiritow d2d11aeec5 Update to SDL2.0.7, SDL_image 2.0.2
It seems that SDL_Mixer 2.0.2 is not built with any audio support.
No newer version of SDL_ttf found.
2017-12-31 17:57:20 +08:00

21 lines
302 B
C++

#pragma once
#include "include.h"
#include "begin_code.h"
class AudioPlayer
{
public:
AudioPlayer();
~AudioPlayer();
private:
class _Audio
{
public:
_Audio();
~_Audio();
};
static _Audio* _sysAudio;
static int _sysAudioCounter;
};
#include "end_code.h"