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