import { IVec2 } from "chibiengine"; import PhysicsWorld from "../world/PhysicsWorld"; import Shape from "./Shape"; export default class PolygonShape implements Shape { vertices: IVec2[]; constructor(vertices: IVec2[]); create(world: PhysicsWorld): Promise; }