Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
LayerBaseCraft.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
3public class LayerBaseCraft : ELayer
4{
5 public virtual bool CanCancelAI => false;
6
7 public virtual bool RepeatAI => false;
8
9 public virtual List<Thing> GetTargets()
10 {
11 return null;
12 }
13
14 public virtual int GetReqIngredient(int index)
15 {
16 return 1;
17 }
18
19 public virtual void RefreshCurrentGrid()
20 {
21 }
22
23 public virtual void ClearButtons()
24 {
25 }
26
27 public virtual void OnEndCraft()
28 {
29 }
30}
Definition: ELayer.cs:4
virtual int GetReqIngredient(int index)
virtual bool CanCancelAI
virtual bool RepeatAI
virtual List< Thing > GetTargets()
virtual void RefreshCurrentGrid()
virtual void ClearButtons()
virtual void OnEndCraft()