Added basic structure and comments for Tools

Fixed lpe palette loading, added custom events
This commit is contained in:
unsettledgames
2021-10-25 19:23:06 +02:00
parent a930fabcba
commit 0fcb309cc7
10 changed files with 131 additions and 13 deletions

14
js/ToolManager.js Normal file
View File

@ -0,0 +1,14 @@
const ToolManager = (() => {
/** What it should do
*
* - Listen to mouse events
* - Bind mouse events
* - Call tool functions
*
*
*/
return {
}
})