Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/PhysicsTools/SegmentPropertiesCylinder.cs
2026-02-21 16:45:37 +08:00

17 lines
231 B
C#

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