コード例 #1
0
 public ClKeyData()
 {
     this.X       = 0;
     this.Y       = 0;
     this.Z       = 0;
     this.Command = 0;
     this.Key     = new ClKey();
 }
コード例 #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);
 }
コード例 #3
0
ファイル: ClKey.cs プロジェクト: skempf/arbites-family
 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;
 }