chore: lint

This commit is contained in:
cha0s 2024-07-09 15:07:22 -05:00
parent 3f580c47c1
commit 2a0321f15e

View File

@ -120,7 +120,12 @@ export default class Engine {
const {TileLayers} = ecs.get(1);
const {brush, layer: paintLayer, stamp} = payload.value;
const layer = TileLayers.layer(paintLayer);
layer.stamp(stamp.at, stamp.data)
switch (brush) {
case 0: {
layer.stamp(stamp.at, stamp.data)
break;
}
}
break;
}
case 'changeSlot': {