diff options
Diffstat (limited to 'scene/resources/sphere_shape.h')
| -rw-r--r-- | scene/resources/sphere_shape.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scene/resources/sphere_shape.h b/scene/resources/sphere_shape.h index 990564be8..576c59ee7 100644 --- a/scene/resources/sphere_shape.h +++ b/scene/resources/sphere_shape.h @@ -29,22 +29,20 @@ #ifndef SPHERE_SHAPE_H #define SPHERE_SHAPE_H - #include "scene/resources/shape.h" class SphereShape : public Shape { - GDCLASS(SphereShape,Shape); + GDCLASS(SphereShape, Shape); float radius; protected: - static void _bind_methods(); virtual void _update_shape(); virtual Vector<Vector3> _gen_debug_mesh_lines(); -public: +public: void set_radius(float p_radius); float get_radius() const; |
