mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
选择帮助器。
This commit is contained in:
parent
5682d78623
commit
c62faecf63
22
ShadowEditor.Web/src/helper/SelectHelper.js
Normal file
22
ShadowEditor.Web/src/helper/SelectHelper.js
Normal file
@ -0,0 +1,22 @@
|
||||
import BaseHelper from './BaseHelper';
|
||||
|
||||
/**
|
||||
* 选择帮助器
|
||||
* @param {*} app
|
||||
*/
|
||||
function SelectHelper(app) {
|
||||
BaseHelper.call(this, app);
|
||||
}
|
||||
|
||||
SelectHelper.prototype = Object.create(BaseHelper.prototype);
|
||||
SelectHelper.prototype.constructor = SelectHelper;
|
||||
|
||||
SelectHelper.prototype.start = function () {
|
||||
|
||||
};
|
||||
|
||||
SelectHelper.prototype.stop = function () {
|
||||
|
||||
};
|
||||
|
||||
export default SelectHelper;
|
||||
Loading…
x
Reference in New Issue
Block a user