import Shape from "./Shape"; import PhysicsWorld from "../world/PhysicsWorld"; import { IVec2 } from "chibiengine"; export default class ChainShape implements Shape { vertices: IVec2[]; private prevVertex?; private nextVertex?; constructor(vertices: IVec2[], prevVertex?: IVec2, nextVertex?: IVec2); create(world: PhysicsWorld): Promise; }