import { IVec2 } from "chibiengine"; import PhysicsWorld from "../world/PhysicsWorld"; import Shape from "./Shape"; export default class RectShape implements Shape { width: number; height: number; private center; constructor(width: number, height: number, center?: IVec2); create(world: PhysicsWorld): Promise; }