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