Elin Modding Docs Doc
Loading...
Searching...
No Matches
InvOwnerToolbelt.cs
1using System;
2
3// Token: 0x02000565 RID: 1381
5{
6 // Token: 0x060025BD RID: 9661 RVA: 0x000D6F21 File Offset: 0x000D5121
7 public override bool AllowHold(Thing t)
8 {
9 return false;
10 }
11
12 // Token: 0x060025BE RID: 9662 RVA: 0x000D6F24 File Offset: 0x000D5124
13 public override void OnClick(ButtonGrid button)
14 {
15 SE.Beep();
16 }
17
18 // Token: 0x060025BF RID: 9663 RVA: 0x000D6F2B File Offset: 0x000D512B
19 public InvOwnerToolbelt(Card owner, Card container = null, CurrencyType _currency = CurrencyType.None) : base(owner, container, _currency, PriceType.Default)
20 {
21 }
22}
Definition Card.cs:13
Definition Thing.cs:10