Startpoint widget implemented

This commit is contained in:
Mal
2020-02-04 23:03:33 +01:00
parent d46b195269
commit fa648ae730
12 changed files with 231 additions and 12 deletions

9
tilorswift/js/Brush.js Normal file
View File

@@ -0,0 +1,9 @@
import BrushMode from "./BrushMode.js";
export default class Brush
{
constructor()
{
this.mode = BrushMode.TERRAIN;
}
}