11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
import Component from '@/ecs/component.js';
|
|
|
|
export default class VisibleAabb extends Component {
|
|
static properties = {
|
|
x0: {type: 'float32'},
|
|
x1: {type: 'float32'},
|
|
y0: {type: 'float32'},
|
|
y1: {type: 'float32'},
|
|
};
|
|
}
|