Elin Modding Docs Doc
Loading...
Searching...
No Matches
InvOwnerCopyShop.cs
1using System;
2
3// Token: 0x02000562 RID: 1378
5{
6 // Token: 0x060025AB RID: 9643 RVA: 0x000D6DE5 File Offset: 0x000D4FE5
7 public InvOwnerCopyShop(Card owner, Card container = null, CurrencyType _currency = CurrencyType.None) : base(owner, container, _currency, PriceType.Default)
8 {
9 }
10
11 // Token: 0x17000B40 RID: 2880
12 // (get) Token: 0x060025AC RID: 9644 RVA: 0x000D6DF1 File Offset: 0x000D4FF1
13 public override bool UseGuide
14 {
15 get
16 {
17 return true;
18 }
19 }
20
21 // Token: 0x060025AD RID: 9645 RVA: 0x000D6DF4 File Offset: 0x000D4FF4
22 public override bool ShouldShowGuide(Thing t)
23 {
24 return this.owner.trait.CanCopy(t);
25 }
26
27 // Token: 0x060025AE RID: 9646 RVA: 0x000D6E07 File Offset: 0x000D5007
28 public override bool AllowMoved(Thing t)
29 {
30 return this.owner.trait.CanCopy(t);
31 }
32}
Definition Card.cs:13
Definition Thing.cs:10