import { Thing } from "./thing";

export class Entity extends Thing {
    constructor() {
        super();
        this.component = {};

    }


}