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