mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
5 lines
129 B
JavaScript
5 lines
129 B
JavaScript
|
class SelectionTool extends Tool {
|
||
|
constructor(name, options, switchFunc) {
|
||
|
super(name, options, switchFunc);
|
||
|
}
|
||
|
}
|