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
GenSearch.cs
Go to the documentation of this file.
1using System;
3
5{
6 // Token: 0x020004D1 RID: 1233
7 public abstract class GenSearch : GenBase
8 {
9 // Token: 0x0600302C RID: 12332 RVA: 0x001F5C04 File Offset: 0x001F3E04
11 {
12 this._conditions = conditions;
13 return this;
14 }
15
16 // Token: 0x0600302D RID: 12333
17 public abstract Point Find(Point origin);
18
19 // Token: 0x0600302E RID: 12334 RVA: 0x001F5C1C File Offset: 0x001F3E1C
20 protected bool Check(int x, int y)
21 {
22 GenCondition[] conditions = this._conditions;
23 bool requireAll = this._requireAll;
24 int height = conditions._height;
26 bool requireAll2 = this._requireAll;
27 bool flag;
28 return flag;
29 }
30
31 // Token: 0x0600302F RID: 12335 RVA: 0x001F5C60 File Offset: 0x001F3E60
33 {
34 return this;
35 }
36
37 // Token: 0x06003030 RID: 12336 RVA: 0x001F5C70 File Offset: 0x001F3E70
38 protected GenSearch()
39 {
40 }
41
42 // Token: 0x06003031 RID: 12337 RVA: 0x001F5C8C File Offset: 0x001F3E8C
43 // Note: this type is marked as 'beforefieldinit'.
44 static GenSearch()
45 {
46 }
47
48 // Token: 0x040039CE RID: 14798
49 public static Point NOT_FOUND;
50
51 // Token: 0x040039CF RID: 14799
52 private bool _requireAll = true;
53
54 // Token: 0x040039D0 RID: 14800
56 }
57}
class f__AnonymousType0<< Count > j__TPar
GenSearch RequireAll(bool mode)
Definition GenSearch.cs:32
GenSearch Conditions(params GenCondition[] conditions)
Definition GenSearch.cs:10