assassin-bug/framework/world/entity.d.ts

7 lines
153 B
TypeScript
Raw Permalink Normal View History

2022-11-26 01:22:02 +00:00
import { Component } from "./component";
export declare class Entity {
id: number;
components: Array<Component<any>>;
constructor();
}