Files
Fishing2/Assets/ThirdParty/Obi/Scripts/Common/Blueprints/Constraints/Batches/IStructuralConstraintBatch.cs
2025-05-10 12:49:47 +08:00

14 lines
274 B
C#

using UnityEngine;
using System.Collections;
namespace Obi
{
public interface IStructuralConstraintBatch
{
float GetRestLength(int index);
void SetRestLength(int index, float restLength);
ParticlePair GetParticleIndices(int index);
}
}