assassin-bug/framework/world/entity.js

6 lines
94 B
JavaScript
Raw Normal View History

2022-11-26 01:22:02 +00:00
export class Entity {
constructor() {
this.components = new Array();
}
}