using System.Collections; using System.Collections.Generic; using UnityEngine; public interface Character { float getLevel(); string GreetingMessage(); string GoodbyeMessage(); string butthurtGoodbye(); string nothingMoreToSay(); string ProximityMessage(); string converse(); string[] getResponses(); }