mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
25 lines
373 B
C++
25 lines
373 B
C++
#ifndef SOUND_SE_SOUND_INTERNAL_HPP
|
|
#define SOUND_SE_SOUND_INTERNAL_HPP
|
|
|
|
class SESoundInternal {
|
|
public:
|
|
// TODO
|
|
};
|
|
|
|
class SEDiskSound : public SESoundInternal {
|
|
public:
|
|
// TODO
|
|
};
|
|
|
|
class SEMemorySound : public SESoundInternal {
|
|
public:
|
|
// TODO
|
|
};
|
|
|
|
class SEStreamedSound : public SESoundInternal {
|
|
public:
|
|
// TODO
|
|
};
|
|
|
|
#endif
|