/**
* Represents the Component in the Entity Component System.
* Basically this class doesn't do anything - It's just a empty class.
* @constructor
* @param args {Object} - A key-value storage to create class.
*/
function Component(args) {
// Empty
}
if(typeof module !== 'undefined') {
module.exports = Component;
}