DotRecastNetSim/src/DotRecast.Detour/DtSegInterval.cs

16 lines
323 B
C#
Raw Normal View History

2023-05-07 12:10:20 +03:00
namespace DotRecast.Detour
{
public class DtSegInterval
2023-05-07 12:10:20 +03:00
{
public long refs;
public int tmin;
public int tmax;
public DtSegInterval(long refs, int tmin, int tmax)
2023-05-07 12:10:20 +03:00
{
this.refs = refs;
this.tmin = tmin;
this.tmax = tmax;
}
}
}