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,30 @@
using System;
using Cpp2IlInjected;
namespace Pathfinding
{
// Token: 0x02000062 RID: 98
[Token(Token = "0x200003B")]
public interface IUpdatableGraph
{
// Token: 0x06000440 RID: 1088
[Token(Token = "0x60003AF")]
[Address(Slot = "0")]
void UpdateArea(GraphUpdateObject o);
// Token: 0x06000441 RID: 1089
[Token(Token = "0x60003B0")]
[Address(Slot = "1")]
void UpdateAreaInit(GraphUpdateObject o);
// Token: 0x06000442 RID: 1090
[Token(Token = "0x60003B1")]
[Address(Slot = "2")]
void UpdateAreaPost(GraphUpdateObject o);
// Token: 0x06000443 RID: 1091
[Token(Token = "0x60003B2")]
[Address(Slot = "3")]
GraphUpdateThreading CanUpdateAsync(GraphUpdateObject o);
}
}