This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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);
}
}