using System.Collections; using System.Collections.Generic; using UnityEngine; public class WandData : MonoBehaviour { public float power = 1f; //public string element = "water"; public void SetPower(float pow) { power = pow; } }