12 lines
350 B
C#
12 lines
350 B
C#
#if (OBI_BURST && OBI_MATHEMATICS && OBI_COLLECTIONS)
|
|
namespace Obi
|
|
{
|
|
public interface IConstraintProvider
|
|
{
|
|
int GetConstraintCount();
|
|
int GetParticleCount(int constraintIndex);
|
|
int GetParticle(int constraintIndex, int index);
|
|
void WriteSortedConstraint(int constraintIndex, int sortedIndex);
|
|
}
|
|
}
|
|
#endif |