@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
9 lines • 359 B
TypeScript
export class StateGraphSystem extends System<any, any, any, any, any> {
constructor();
dependencies: (typeof StateGraph)[];
link(graph: any, entity: any): void;
unlink(graph: any, entity: any): void;
}
import { System } from "../../../ecs/System.js";
import { StateGraph } from "./StateGraph.js";
//# sourceMappingURL=StateGraphSystem.d.ts.map