silphius/app/ecs/components/area-size.js

9 lines
176 B
JavaScript
Raw Normal View History

2024-06-26 21:08:09 -05:00
import Component from '@/ecs/component.js';
export default class AreaSize extends Component {
static properties = {
2024-07-10 14:15:05 -05:00
x: {type: 'uint32'},
y: {type: 'uint32'},
2024-06-26 21:08:09 -05:00
};
2024-06-10 22:42:30 -05:00
}