Files
2026-04-08 23:40:05 +02:00

129 lines
4.4 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
using Photon.Realtime;
using UnityEngine;
// Token: 0x0200012E RID: 302
[Token(Token = "0x200012E")]
[Serializable]
[StructLayout(3)]
public class GameAFKSettings : JMFAKCJLJKP
{
// Token: 0x060007C5 RID: 1989 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007C5")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "4")]
public void InitializeOnAwake(GameManager ONLEICCNNBI)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007C6 RID: 1990 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007C6")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "6")]
public void InitializeOnStart()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007C7 RID: 1991 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007C7")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "5")]
public void CleanupOnDestroy()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007C8 RID: 1992 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007C8")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "7")]
public void OnUpdate()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007C9 RID: 1993 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007C9")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "8")]
public void OnGameStart()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007CA RID: 1994 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007CA")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "9")]
public void OnGameEnd()
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007CB RID: 1995 RVA: 0x00026240 File Offset: 0x00024440
[Token(Token = "0x60007CB")]
[Address(RVA = "0x12F2F70", Offset = "0x12F1970", VA = "0x1812F2F70", Slot = "10")]
public void InitializeLocalPlayer(bool HOCMIMEHLLM)
{
if (!HOCMIMEHLLM && this.supportsCustomAfkSettings != HOCMIMEHLLM && this.settingsPushed == HOCMIMEHLLM)
{
float num = this.afkKickToIntroTimeout;
float num2 = this.afkWarningStartTimeout;
this.settingsPushed = true;
}
}
// Token: 0x060007CC RID: 1996 RVA: 0x00026284 File Offset: 0x00024484
[Token(Token = "0x60007CC")]
[Address(RVA = "0x12F3020", Offset = "0x12F1A20", VA = "0x1812F3020", Slot = "11")]
public void ResetLocalPlayer(bool HOCMIMEHLLM)
{
if (this.settingsPushed)
{
global::Player.<EGKJPJKLEAI>k__BackingField.PopAfkKickToIntroTimeout();
global::Player.<EGKJPJKLEAI>k__BackingField.PopAfkWarningStartTimeout();
this.settingsPushed = false;
}
}
// Token: 0x060007CD RID: 1997 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60007CD")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "12")]
public void OnPlayerDisconnected(Photon.Realtime.Player IEKDDPPNFPF)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060007CE RID: 1998 RVA: 0x000262BC File Offset: 0x000244BC
[Token(Token = "0x60007CE")]
[Address(RVA = "0x12F3140", Offset = "0x12F1B40", VA = "0x1812F3140")]
public GameAFKSettings()
{
int num = 0;
this.afkKickToIntroTimeout = 10f;
this.afkWarningStartTimeout = 10f;
this.InitializeOnAwake(num);
}
// Token: 0x0400070F RID: 1807
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x400070F")]
[SerializeField]
private bool supportsCustomAfkSettings;
// Token: 0x04000710 RID: 1808
[global::Cpp2IlInjected.FieldOffset(Offset = "0x14")]
[Token(Token = "0x4000710")]
[SerializeField]
private float afkKickToIntroTimeout;
// Token: 0x04000711 RID: 1809
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000711")]
[SerializeField]
private float afkWarningStartTimeout;
// Token: 0x04000712 RID: 1810
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1C")]
[Token(Token = "0x4000712")]
private bool settingsPushed;
}