mr-crocs-adventures/tilorswift/js/Brush.js

11 lines
177 B
JavaScript
Raw Normal View History

2020-02-04 23:03:33 +01:00
import BrushMode from "./BrushMode.js";
export default class Brush
{
constructor()
{
this.mode = BrushMode.TERRAIN;
2023-09-24 01:48:01 +02:00
this.isIntelligent = false;
2020-02-04 23:03:33 +01:00
}
2023-09-24 01:48:01 +02:00
}