Exemplo n.º 1
0
 public void MoveTo(RuneSlot targetSlot)
 {
     this.transform.position = new Vector3(targetSlot.transform.position.x, targetSlot.transform.position.y, transform.position.z);
     if(Slot != null) Slot.RemoveRune();
     targetSlot.TakeRune(this);
 }