@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
11 lines (9 loc) • 432 B
TypeScript
import Signal from "../../../../../core/events/signal/Signal";
import {System} from "../../../../ecs/System";
import Engine from "../../../../Engine";
import {SGMesh} from "./SGMesh";
import {SGMeshAnimationController} from "./SGMeshAnimationController";
export class SGMeshAnimationControllerSystem extends System<SGMeshAnimationController,SGMesh>{
readonly onWorkDone: Signal<void>
constructor(engine:Engine)
}