using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "EnemyScriptableObject", order = 2)]
public class DataEnemy : ScriptableObject
{

    public float health;

    public float damage;
    
}