Heroes_of_Hiis/Assets/Project Files/Scripts/JoonasP/WandData.cs

17 lines
257 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WandData : MonoBehaviour
{
2022-04-25 09:55:41 +00:00
public float power = 1f;
public string element = null;
2022-04-25 09:55:41 +00:00
public void SetPower(float pow)
{
2022-04-25 10:39:16 +00:00
power = pow;
}
}