assassin-bug/framework/world/entity.js

6 lines
94 B
JavaScript

export class Entity {
constructor() {
this.components = new Array();
}
}