Esempio n. 1
0
 public Destination()
 {
     X = DFKeyGenerator.GetX();
     Y = DFKeyGenerator.GetY(X);
 }
Esempio n. 2
0
 public void GenerateKey(int y)
 {
     Key = DFKeyGenerator.GetKey(X, y);
     Console.WriteLine($"Destination: X:{X} Y:{Y} KEY:{Key}");
 }
Esempio n. 3
0
 public Source()
 {
     X = DFKeyGenerator.GetX();
     Y = DFKeyGenerator.GetY(X);
 }