23 lines
294 B
C#
23 lines
294 B
C#
|
|
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace Obi
|
|
{
|
|
public interface IConstraints
|
|
{
|
|
Oni.ConstraintType constraintType
|
|
{
|
|
get;
|
|
}
|
|
|
|
ISolverImpl solver
|
|
{
|
|
get;
|
|
}
|
|
|
|
int GetConstraintCount();
|
|
}
|
|
|
|
}
|