Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1.         private void Transition(Color newColor)
  2.         {
  3.             for (uint c = 0; c < Constants.MaxColumns; c++)
  4.             {
  5.                 for (uint r = 0; r < Constants.MaxRows; r++)
  6.                 {
  7.                     Keyboard.Instance[r, c] = newColor;
  8.                 }
  9.                 Thread.Sleep(50);
  10.             }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement