public void OutputToConsole(string str, FunctionIdentifier func)
 {
     if (func.IsPrintSingle())
         Console.PrintLine(str);
     else
     {
         Console.Print(str);
         if (func.IsNewLine() || func.IsWaitInput())
         {
             Console.NewLine();
             if (func.IsWaitInput())
                 Console.ReadAnyKey();
         }
     }
     Console.UseUserStyle = true;
 }