public void PromptRoll()
 {
     diceRollList.Clear();
     diceRollString = currentPlayer.name + ", type 'roll' to roll the dice \n*   or type 'done' to finish your turn.";
     DisplayScreen();
     cursorX = 4;
     cursorY = 20;
     SetCursor();
     if (currentPlayer.CheckPromptRoll())
     {
         turnDone = true;
         DisplayTurnOverScreen();
     }
 }