silphius/app/ecs/components/water.js

11 lines
192 B
JavaScript
Raw Permalink Normal View History

2024-06-28 16:38:49 -05:00
import Component from '@/ecs/component.js';
export default class Water extends Component {
static properties = {
water: {
type: 'map',
value: {type: 'uint8'},
},
};
}