Fix wording in comment

This commit is contained in:
Samuel Mannehed 2020-05-01 19:51:33 +02:00
parent c9582690ac
commit f477469fb5
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ export default class Mouse {
// ===== EVENT HANDLERS ===== // ===== EVENT HANDLERS =====
this.onmousebutton = () => {}; // Handler for mouse button click/release this.onmousebutton = () => {}; // Handler for mouse button press/release
this.onmousemove = () => {}; // Handler for mouse movement this.onmousemove = () => {}; // Handler for mouse movement
} }