31 lines
709 B
C#
31 lines
709 B
C#
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);
|
|
}
|
|
}
|