You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
519 B
C#
31 lines
519 B
C#
namespace Script.FrameWork.EventSystem
|
|
{
|
|
public class EventArgs
|
|
{
|
|
}
|
|
|
|
public class EventArgsInt : EventArgs
|
|
{
|
|
public int IntVal;
|
|
}
|
|
|
|
public class EventArgsFloat : EventArgs
|
|
{
|
|
public int FloatVal;
|
|
}
|
|
|
|
public class EventArgsString : EventArgs
|
|
{
|
|
public string StringVal;
|
|
}
|
|
|
|
public class EventArgsBool : EventArgs
|
|
{
|
|
public bool BoolVal;
|
|
}
|
|
|
|
public class EventArgsObject : EventArgs
|
|
{
|
|
public object ObjectVal;
|
|
}
|
|
} |