forked from mirror/DotRecast
16 lines
319 B
C#
16 lines
319 B
C#
|
namespace DotRecast.Detour
|
|||
|
{
|
|||
|
public class SegInterval
|
|||
|
{
|
|||
|
public long refs;
|
|||
|
public int tmin;
|
|||
|
public int tmax;
|
|||
|
|
|||
|
public SegInterval(long refs, int tmin, int tmax)
|
|||
|
{
|
|||
|
this.refs = refs;
|
|||
|
this.tmin = tmin;
|
|||
|
this.tmax = tmax;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|