예제 #1
0
        public void Clone(ISPotion potion)
        {
            base.Clone(potion);

            _effect = potion.EffectAmount;
            potionType = potion.potionType;
            _prefab = potion.Prefab;
        }
예제 #2
0
 public ISPotion(ISPotion potion)
 {
     Clone(potion);
 }