mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
19 lines
281 B
JavaScript
19 lines
281 B
JavaScript
var ID = -1;
|
|
|
|
/**
|
|
* 事件基类
|
|
* @author tengge / https://github.com/tengge1
|
|
*/
|
|
function BaseEvent(app) {
|
|
this.id = `${this.constructor.name}${ID--}`;
|
|
}
|
|
|
|
BaseEvent.prototype.start = function () {
|
|
|
|
};
|
|
|
|
BaseEvent.prototype.stop = function () {
|
|
|
|
};
|
|
|
|
export default BaseEvent; |