blob: 3bacd0977b8dc01c25ca905d2bdfef19979ed613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __ASURA_ENGINE_SOUND_H__
#define __ASURA_ENGINE_SOUND_H__
#include "Object.h"
namespace AsuraEngine
{
namespace Audio
{
class Sound : virtual public Object, public Scripting::Portable
{
};
}
}
#endif
|