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
FloatRange.cs
Go to the documentation of this file.
1using System;
4
6{
7 // Token: 0x0200050A RID: 1290
8 public struct FloatRange
9 {
10 // Token: 0x06003132 RID: 12594 RVA: 0x001F7BE4 File Offset: 0x001F5DE4
11 public FloatRange(float minimum, float maximum)
12 {
13 }
14
15 // Token: 0x06003133 RID: 12595 RVA: 0x000021DB File Offset: 0x000003DB
16 public static FloatRange operator *(FloatRange range, float scale)
17 {
18 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
19 }
20
21 // Token: 0x06003134 RID: 12596 RVA: 0x000021DB File Offset: 0x000003DB
22 public static FloatRange operator *(float scale, FloatRange range)
23 {
24 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
25 }
26
27 // Token: 0x06003135 RID: 12597 RVA: 0x000021DB File Offset: 0x000003DB
28 public static FloatRange operator /(FloatRange range, float scale)
29 {
30 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
31 }
32
33 // Token: 0x06003136 RID: 12598 RVA: 0x000021DB File Offset: 0x000003DB
34 public static FloatRange operator /(float scale, FloatRange range)
35 {
36 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
37 }
38
39 // Token: 0x04003AFB RID: 15099
40 [JsonProperty("Min")]
41 public readonly float Minimum;
42
43 // Token: 0x04003AFC RID: 15100
44 [JsonProperty("Max")]
45 public readonly float Maximum;
46 }
47}
class f__AnonymousType0<< Count > j__TPar
FloatRange(float minimum, float maximum)
Definition FloatRange.cs:11
static FloatRange operator*(FloatRange range, float scale)
Definition FloatRange.cs:16
static FloatRange operator/(FloatRange range, float scale)
Definition FloatRange.cs:28