public Status(string s, int lvl, int tLft, ConsoleForeground cF, ConsoleBackground cB)
 {
     name = s;
     level = lvl;
     timeLeft = tLft;
     colorFore = cF;
     colorBack = cB;
 }
 public Status(string s, int lvl, int tLft, ConsoleForeground cF, ConsoleBackground cB)
 {
     name      = s;
     level     = lvl;
     timeLeft  = tLft;
     colorFore = cF;
     colorBack = cB;
 }
 public Status(string s, int lvl, Boolean perm, ConsoleForeground cF, ConsoleBackground cB)
 {
     name = s;
     level = lvl;
     colorFore = cF;
     colorBack = cB;
     permanent = perm;
     if (perm)
     {
         timeLeft = 1;
     }
 }
 public Status(string s, int lvl, Boolean perm, ConsoleForeground cF, ConsoleBackground cB)
 {
     name      = s;
     level     = lvl;
     colorFore = cF;
     colorBack = cB;
     permanent = perm;
     if (perm)
     {
         timeLeft = 1;
     }
 }
Example #5
0
 public static void TextColor(ConsoleForeground foreground, ConsoleBackground background)
 {
     CurrentConsolePen = (int)foreground + (int)background;
     SetConsoleTextAttribute(hConsoleOutput, CurrentConsolePen);
 }
 /// <summary>
 /// Sets the console pen color to that specified.
 /// </summary>
 /// <param name="foreground">A foreground color specified from the 
 /// ConsoleForeground enumeration</param>
 /// <param name="background">A background color specified from the 
 /// ConsoleBackground enumeration</param>
 public static void TextColor(ConsoleForeground foreground, ConsoleBackground background)
 {
     CurrentConsolePen = (int)foreground + (int)background;
     SetConsoleTextAttribute(hConsoleOutput, CurrentConsolePen);
 }