pixel-editor/js/tools/SelectionTool.js

9 lines
197 B
JavaScript
Raw Normal View History

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