예제 #1
0
 public Destination()
 {
     X = DFKeyGenerator.GetX();
     Y = DFKeyGenerator.GetY(X);
 }
예제 #2
0
 public void GenerateKey(int y)
 {
     Key = DFKeyGenerator.GetKey(X, y);
     Console.WriteLine($"Destination: X:{X} Y:{Y} KEY:{Key}");
 }
예제 #3
0
파일: Source.cs 프로젝트: stefann19/retele
 public Source()
 {
     X = DFKeyGenerator.GetX();
     Y = DFKeyGenerator.GetY(X);
 }