@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
16 lines • 578 B
TypeScript
export default AnimationControllerSystem;
declare class AnimationControllerSystem extends System<any, any, any, any, any> {
constructor();
dependencies: (typeof AnimationController)[];
removers: any[];
/**
*
* @param {AnimationController} component
* @param entity
*/
link(component: AnimationController, entity: any): void;
unlink(component: any, entity: any): void;
}
import { System } from '../../../ecs/System.js';
import AnimationController from './AnimationController.js';
//# sourceMappingURL=AnimationControllerSystem.d.ts.map