UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

22 lines 446 B
export class IKProblem { /** * * @type {IKConstraint} */ constraint: IKConstraint; /** * * @type {Skeleton} */ skeleton: Skeleton; /** * * @type {Terrain} */ terrain: Terrain; } export namespace IKProblem { let pool: ObjectPoolFactory<IKProblem>; } import { ObjectPoolFactory } from "../../../core/model/object/ObjectPoolFactory.js"; //# sourceMappingURL=IKProblem.d.ts.map