using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class WandData : MonoBehaviour
{
    public float power = 1f;

    public string element = null;


    public void SetPower(float pow)
    {
        power = pow;
    }
}