UNPKG

ecsy-baby

Version:

A community project for easy implementation of ecsy in babylon.js

8 lines (7 loc) 273 B
import { Attributes, System } from "ecsy"; import { BabyEntity } from "./entity"; import { BabyWorld } from "./world"; export declare abstract class BabySystem extends System<BabyEntity> { world: BabyWorld; constructor(world: BabyWorld, attributes?: Attributes); }