This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,26 @@
using System;
using Cpp2IlInjected;
namespace Pathfinding
{
// Token: 0x0200004C RID: 76
[Token(Token = "0x2000029")]
public interface IWorkItemContext
{
// Token: 0x06000369 RID: 873
[Token(Token = "0x60002E9")]
[Address(Slot = "0")]
[Obsolete]
void QueueFloodFill();
// Token: 0x0600036A RID: 874
[Token(Token = "0x60002EA")]
[Address(Slot = "1")]
void EnsureValidFloodFill();
// Token: 0x0600036B RID: 875
[Token(Token = "0x60002EB")]
[Address(Slot = "2")]
void SetGraphDirty(NavGraph graph);
}
}