using System.Collections; using System.Collections.Generic; using Constants; using UnityEngine; public interface IAnimal{ Animator Anim {get;set;} int WalkSpeed {get;set;} void Walk(); void Run(); void Wander(Transform meh); }