src/component/Audio.js
import Component from './Component';
/**
* A Component that can be attatched to any GameObject.
*
* The Audio Component has controls for playing sounds and music.
* Audio can be locallized to the Object location it is attached to.
*/
export default class Audio extends Component {
}