@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines (13 loc) • 381 B
JavaScript
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) {
}
}