import { Vec2 } from "chibiengine"; import PhysicsWorld from "../world/PhysicsWorld"; import Shape from "./Shape"; export default class CircleShape implements Shape { center: Vec2; radius: number; constructor(center: Vec2, radius: number); create(world: PhysicsWorld): Promise; }