Exemplo n.º 1
0
 public ColourObject(byte Red, byte Green, byte Blue, KeyBoardPart part)
 {
     m_Red   = Red;
     m_Green = Green;
     m_Blue  = Blue;
     KBPART  = part;
 }
Exemplo n.º 2
0
 public ColourObject()
 {
     m_Red   = 0;
     m_Green = 0;
     m_Blue  = 0;
     KBPART  = KeyBoardPart.LEFT;
 }
Exemplo n.º 3
0
 public ColourObject(KeyBoardPart part)
 {
     KBPART = part;
 }