using System; namespace PhysicsTools { [Serializable] public class SegmentPropertiesCylinder : SegmentPropertiesBase { public float radius; public SegmentPropertiesCylinder() { length = 1f; radius = 0.1f; } } }