[API] Add MCT class

This commit is contained in:
Victor Woeltjen
2016-05-27 11:49:43 -07:00
parent b73b824e55
commit 0c660238f2
3 changed files with 25 additions and 8 deletions

13
src/MCT.js Normal file
View File

@ -0,0 +1,13 @@
define(['EventEmitter'], function (EventEmitter) {
function MCT() {
EventEmitter.call(this);
}
MCT.prototype = Object.create(EventEmitter.prototype);
MCT.prototype.start = function () {
this.emit('start');
};
return MCT;
});