public PlaceVoxelAct( VoxelHandle Location, CreatureAI Agent, ResourceAmount Resource) : base(Agent) { this.Location = Location; this.Resource = Resource; Name = "Build DestinationVoxel " + Location.ToString(); }
public PlaceVoxelAct( VoxelHandle Location, CreatureAI Agent, String ResourceBlackboardName, String VoxelType) : base(Agent) { this.Location = Location; this.ResourceBlackboardName = ResourceBlackboardName; this.VoxelType = VoxelType; Name = "Build DestinationVoxel " + Location.ToString(); }