Example #1
0
 private void FileDrop(object sender, DFFileDroppedEventArgs e)
 {
     Title = e.Path;
     game?.Print($"Dropped file is {e.Path}");
 }
Example #2
0
 private void FileDrop(DFFileDroppedEventArgs e)
 {
     Title = e.Path;
     Print($"Dropped file is {e.Path}");
 }