/** * Cone Primitive Entity * A simple cone that can be picked up */ declare const cone: { Info: { name: string; description: string; }; Transform: { y: number; }; Body: { type: string; params: { parts: { geometry: { type: string; params: { radius: number; height: number; }; }; material: { type: string; params: { color: string; }; }; }[]; }; }; MotionSource: { type: string; params: { mass: number; }; }; Health: { value: number; }; Rules: { trigger: { type: string; }; actions: { type: string; params: {}; target: string; }[]; }[]; }; export default cone; //# sourceMappingURL=cone.d.ts.map