Exemplo n.º 1
0
 public void Init(int atk, Vector2Int point, NodeType type, NodeController controller)
 {
     base.Init(point, type, controller);
     Atk = atk;
 }
Exemplo n.º 2
0
 public void Init(ChestNodeAttr attr, ChestType chestType, Vector2Int point, NodeType type, NodeController controller)
 {
     base.Init(point, type, controller);
     ChestType = chestType;
     Attr      = attr;
 }
Exemplo n.º 3
0
 public void Init(int mana, Vector2Int point, NodeType type, NodeController controller)
 {
     base.Init(point, type, controller);
     Mana = mana;
 }
Exemplo n.º 4
0
 public void Init(int def, Vector2Int point, NodeType type, NodeController controller)
 {
     base.Init(point, type, controller);
     Def = def;
 }
Exemplo n.º 5
0
 public void Init(float timePlus, Vector2Int point, NodeType type, NodeController controller)
 {
     base.Init(point, type, controller);
     TimePlus = timePlus;
 }