DotRecastNetSim/src/DotRecast.Detour/SegInterval.cs

16 lines
319 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
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;
}
}
}