pixel-editor/js/tools/SelectionTool.js

5 lines
129 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);
}
}