pixel-editor/js/tools/SelectionTool.js

19 lines
359 B
JavaScript
Raw Normal View History

2021-11-01 15:02:18 +03:00
class SelectionTool extends Tool {
switchFunc = undefined;
moveTool = undefined;
constructor(name, options, switchFunc, moveTool) {
super(name, options);
this.moveTool = moveTool;
this.switchFunc = switchFunc;
2021-11-01 15:02:18 +03:00
}
cutSelection() {}
pasteSelection(){}
copySelection(){}
cursorInSelectedArea(){}
2021-11-01 15:02:18 +03:00
}