refactor: support > 65536 spaces

This commit is contained in:
cha0s 2024-07-10 14:15:05 -05:00
parent 348a24d8a2
commit e0a30ddb0b

View File

@ -2,7 +2,7 @@ import Component from '@/ecs/component.js';
export default class AreaSize extends Component {
static properties = {
x: {type: 'uint16'},
y: {type: 'uint16'},
x: {type: 'uint32'},
y: {type: 'uint32'},
};
}