23 lines
474 B
C#
23 lines
474 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace CircuitsV2
|
|
{
|
|
// Token: 0x02000058 RID: 88
|
|
[Token(Token = "0x2000040")]
|
|
[StructLayout(3)]
|
|
public interface IPlayerResolver
|
|
{
|
|
// Token: 0x0600028F RID: 655
|
|
[Token(Token = "0x6000204")]
|
|
[Address(Slot = "0")]
|
|
string GetPlayerName(int playerId);
|
|
|
|
// Token: 0x06000290 RID: 656
|
|
[Token(Token = "0x6000205")]
|
|
[Address(Slot = "1")]
|
|
bool GetPlayerIsLocal(int playerId);
|
|
}
|
|
}
|