Exemplo n.º 1
0
 public ClKeyData()
 {
     this.X       = 0;
     this.Y       = 0;
     this.Z       = 0;
     this.Command = 0;
     this.Key     = new ClKey();
 }
Exemplo n.º 2
0
 public ClKeyData(ClKeyData input)
 {
     this.X       = input.X;
     this.Y       = input.Y;
     this.Z       = input.Z;
     this.Command = input.Command;
     this.Key     = new ClKey(input.Key);
 }
Exemplo n.º 3
0
 public ClKey(ClKey input)
 {
     this.DisplayID = input.DisplayID;
     this.ValASCII  = input.ValASCII;
     this.ValScan   = input.ValScan;
     this.KeyType   = input.KeyType;
     this.AllLayers = input.AllLayers;
     this.HasASCII  = input.HasASCII;
 }