terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
IntRange.cs
Go to the documentation of this file.
1using System;
4
5namespace Terraria.Utilities
6{
7 // Token: 0x020004FA RID: 1274
8 public struct IntRange
9 {
10 // Token: 0x060030E3 RID: 12515 RVA: 0x001F7218 File Offset: 0x001F5418
11 public IntRange(int minimum, int maximum)
12 {
14 }
15
16 // Token: 0x060030E4 RID: 12516 RVA: 0x000021DB File Offset: 0x000003DB
17 public static IntRange operator *(IntRange range, float scale)
18 {
19 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
20 }
21
22 // Token: 0x060030E5 RID: 12517 RVA: 0x000021DB File Offset: 0x000003DB
23 public static IntRange operator *(float scale, IntRange range)
24 {
25 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
26 }
27
28 // Token: 0x060030E6 RID: 12518 RVA: 0x000021DB File Offset: 0x000003DB
29 public static IntRange operator /(IntRange range, float scale)
30 {
31 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
32 }
33
34 // Token: 0x060030E7 RID: 12519 RVA: 0x000021DB File Offset: 0x000003DB
35 public static IntRange operator /(float scale, IntRange range)
36 {
37 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
38 }
39
40 // Token: 0x04003ACD RID: 15053
41 [JsonProperty("Min")]
42 public readonly int Minimum;
43
44 // Token: 0x04003ACE RID: 15054
45 [JsonProperty("Max")]
46 public readonly int Maximum;
47 }
48}
class f__AnonymousType0<< Count > j__TPar
static IntRange operator*(IntRange range, float scale)
Definition IntRange.cs:17
static IntRange operator/(IntRange range, float scale)
Definition IntRange.cs:29
IntRange(int minimum, int maximum)
Definition IntRange.cs:11