Files
27Aug2021-Cpp2IL-Dump/AstarPathfindingProject/Pathfinding/EndingConditionDistance.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

31 lines
825 B
C#

using System;
using Cpp2IlInjected;
namespace Pathfinding
{
// Token: 0x020000DF RID: 223
[Token(Token = "0x2000084")]
public class EndingConditionDistance : PathEndingCondition
{
// Token: 0x060007B3 RID: 1971 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600067B")]
[Address(RVA = "0xA05C80", Offset = "0xA04C80", VA = "0x180A05C80")]
public EndingConditionDistance(Path p, int maxGScore)
{
}
// Token: 0x060007B4 RID: 1972 RVA: 0x000057D4 File Offset: 0x000039D4
[Token(Token = "0x600067C")]
[Address(RVA = "0xA05C50", Offset = "0xA04C50", VA = "0x180A05C50", Slot = "4")]
public override bool TargetFound(PathNode node)
{
return default(bool);
}
// Token: 0x04000544 RID: 1348
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40003CF")]
public int maxGScore;
}
}