UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

20 lines (13 loc) 381 B
import { System } from "../../../ecs/System.js"; import { StateGraph } from "./StateGraph.js"; export class StateGraphSystem extends System { constructor() { super(); this.dependencies = [StateGraph]; } link(graph, entity) { this.entityManager.dataset.addEntityEventListener(); } unlink(graph, entity) { } }