v0.14.6.0
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Microsoft.Xna.Framework
|
||||
{
|
||||
public class FileDropEventArgs : EventArgs
|
||||
{
|
||||
public string FilePath;
|
||||
public FileDropEventArgs(string filePath)
|
||||
{
|
||||
FilePath = filePath;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user