using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu] public class EnemySettings : ScriptableObject { public int HP; public float Speed; public float ApproachDistance; // TODO(zeph): this is part of the attack strategy }