Exemplo n.º 1
0
    public int hpUp;                //무기 방어력

    void Start()
    {
        type    = item.type;
        powerUp = item.powerUp;
        hpUp    = item.hpUp;
    }
Exemplo n.º 2
0
 public int hpUp;                //무기 방어력
 public ItemSlot(ItemType.Item_Type Type, int power, int hp)
 {
     this.type    = Type;
     this.powerUp = power;
     this.hpUp    = hp;
 }