Slightly refactored selection tool

Now the move tool doesn't depend on how the selection has been made anymore
This commit is contained in:
Nicola
2021-12-28 23:14:37 +01:00
parent 8df8b3ac54
commit 69d7f12790
4 changed files with 68 additions and 43 deletions

View File

@@ -2,4 +2,8 @@ class SelectionTool extends Tool {
constructor(name, options, switchFunc) {
super(name, options, switchFunc);
}
cutSelection() {}
pasteSelection(){}
copySelection(){}
}