@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
22 lines • 577 B
TypeScript
export default AnimationController;
declare class AnimationController {
/**
*
* @param json
* @returns {AnimationController}
*/
static fromJSON(json: any): AnimationController;
/**
*
* @type {List<AnimationRule>}
*/
rules: List<AnimationRule>;
fromJSON(json: any): void;
toJSON(): any;
}
declare namespace AnimationController {
let typeName: string;
}
import List from '../../../../core/collection/list/List.js';
import { AnimationRule } from "./AnimationRule.js";
//# sourceMappingURL=AnimationController.d.ts.map