1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-30 16:38:29 +02:00
VVVVVV/desktop_version/src/SoundSystem.h

29 lines
386 B
C
Raw Normal View History

2020-01-01 21:29:24 +01:00
#ifndef SOUNDSYSTEM_H
#define SOUNDSYSTEM_H
#include <SDL_mixer.h>
class MusicTrack
{
public:
MusicTrack(const char* fileName);
MusicTrack(SDL_RWops *rw);
Mix_Music *m_music;
bool m_isValid;
2020-01-01 21:29:24 +01:00
};
class SoundTrack
{
public:
SoundTrack(const char* fileName);
Mix_Chunk *sound;
2020-01-01 21:29:24 +01:00
};
class SoundSystem
{
public:
SoundSystem(void);
2020-01-01 21:29:24 +01:00
};
#endif /* SOUNDSYSTEM_H */