Rename TestApp folder.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace MeshExplorer
|
||||
{
|
||||
public class GenericEventArgs<T> : EventArgs
|
||||
{
|
||||
T argument;
|
||||
|
||||
public T Argument
|
||||
{
|
||||
get { return argument; }
|
||||
}
|
||||
|
||||
public GenericEventArgs(T arg)
|
||||
{
|
||||
argument = arg;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user