using System; using Cpp2IlInjected; using UnityEngine; using UnityEngine.UI; namespace commanastationwww.multistorydungeons { // Token: 0x02000584 RID: 1412 [Token(Token = "0x2000584")] public class FPScounter : MonoBehaviour { // Token: 0x06002E64 RID: 11876 RVA: 0x00062BD4 File Offset: 0x00060DD4 [Token(Token = "0x6002E64")] [Address(RVA = "0x4CCE00", Offset = "0x4CB600", VA = "0x1804CCE00")] private void Start() { /* An exception occurred when decompiling this method (06002E64) ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void commanastationwww.multistorydungeons.FPScounter::Start() ---> System.Exception: Basic block has to end with unconditional control flow. {; Block_0:; stloc:Text(var_0_06, call:Text(Component::GetComponent, ldloc:FPScounter[exp:Component](this))); stfld:Text(FPScounter::textFpsCounter, ldloc:FPScounter(this), ldloc:Text(var_0_06)); }; at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810 at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 344 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123 at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88 --- End of inner exception stack trace --- at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92 at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1618 */; } // Token: 0x06002E65 RID: 11877 RVA: 0x00062BF0 File Offset: 0x00060DF0 [Token(Token = "0x6002E65")] [Address(RVA = "0x4CCEA0", Offset = "0x4CB6A0", VA = "0x1804CCEA0")] private void Update() { float num = this.timeleft; float deltaTime = Time.deltaTime; this.timeleft = num; float timeScale = Time.timeScale; float deltaTime2 = Time.deltaTime; int num2 = this.frames; num2++; this.frames = num2; this.accum = timeScale; string text = string.Format("{0:F2} FPS", num2); this.textFpsCounter.text = text; float num3 = this.updateInterval; this.timeleft = num3; int num4 = 0; this.accum = (float)num4; } // Token: 0x06002E66 RID: 11878 RVA: 0x00062C84 File Offset: 0x00060E84 [Token(Token = "0x6002E66")] [Address(RVA = "0x4CCDF0", Offset = "0x4CB5F0", VA = "0x1804CCDF0")] public FPScounter() { } // Token: 0x04003757 RID: 14167 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4003757")] public float updateInterval = 0.5f; // Token: 0x04003758 RID: 14168 [FieldOffset(Offset = "0x1C")] [Token(Token = "0x4003758")] private float accum; // Token: 0x04003759 RID: 14169 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4003759")] private int frames; // Token: 0x0400375A RID: 14170 [FieldOffset(Offset = "0x24")] [Token(Token = "0x400375A")] private float timeleft; // Token: 0x0400375B RID: 14171 [FieldOffset(Offset = "0x28")] [Token(Token = "0x400375B")] private Text textFpsCounter; } }