using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TheSlimesJourney { public interface UI { void Clear(); void DescribeEnemies(List enemies); void DisplayCondition(); void DisplayEventChoices(List choices); void DisplayIntro(); void DisplayInventoryOptions(List items, bool forced = false); void DisplayMutationOptions(List mutations); void DisplayWanderOptions(List events); void GameOver(); void Pause(); void Print(string message); void PrintStatus(); void WaitForInput(List availableActions); } }