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