8 lines
163 B
C#
Raw Normal View History

2024-01-31 19:16:05 +08:00
namespace Plugins.JNGame.BepuPhysics.Components
{
public enum BShape
{
/// <summary> Sphere shape type </summary>
Sphere = 1,
}
}