14 lines
247 B
C#
14 lines
247 B
C#
using System;
|
|
|
|
namespace Microsoft.Xna.Framework
|
|
{
|
|
public class FileDropEventArgs : EventArgs
|
|
{
|
|
public string FilePath;
|
|
public FileDropEventArgs(string filePath)
|
|
{
|
|
FilePath = filePath;
|
|
}
|
|
}
|
|
}
|