diff options
Diffstat (limited to 'source/modules/asura-openal/sound.h')
-rw-r--r-- | source/modules/asura-openal/sound.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source/modules/asura-openal/sound.h b/source/modules/asura-openal/sound.h new file mode 100644 index 0000000..2b0eab0 --- /dev/null +++ b/source/modules/asura-openal/sound.h @@ -0,0 +1,31 @@ +#ifndef __ASURA_ENGINE_SOUND_H__ +#define __ASURA_ENGINE_SOUND_H__ + +#include <asura-utils/scripting/portable.hpp> + +namespace AsuraEngine +{ + namespace Audio + { + + /// + /// Ƶļ + /// + class Sound ASURA_FINAL + : public AEScripting::Portable<Sound> + { + public: + + Sound(); + ~Sound(); + + private: + + + + }; + + } +} + +#endif
\ No newline at end of file |