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