DotRecastNetSim/src/DotRecast.Recast.Demo/Tools/AgentData.cs

15 lines
294 B
C#

using DotRecast.Core;
namespace DotRecast.Recast.Demo.Tools;
public class AgentData
{
public readonly AgentType type;
public readonly RcVec3f home = new RcVec3f();
public AgentData(AgentType type, RcVec3f home)
{
this.type = type;
this.home = home;
}
}