13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
import Component from '@/ecs/component.js';
|
|
|
|
export default class Controlled extends Component {
|
|
static properties = {
|
|
locked: {type: 'uint8'},
|
|
moveUp: {type: 'float32'},
|
|
moveRight: {type: 'float32'},
|
|
moveDown: {type: 'float32'},
|
|
moveLeft: {type: 'float32'},
|
|
changeSlot: {type: 'int8'},
|
|
};
|
|
}
|