2011-11-16 15:00:54 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace ANX.Framework.Net
|
|
|
|
|
{
|
|
|
|
|
public class HostChangedEventArgs : EventArgs
|
|
|
|
|
{
|
2011-11-16 15:08:04 +00:00
|
|
|
|
public NetworkGamer OldHost
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public NetworkGamer NewHost
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public HostChangedEventArgs(NetworkGamer oldHost, NetworkGamer newHost)
|
|
|
|
|
{
|
|
|
|
|
OldHost = oldHost;
|
|
|
|
|
NewHost = newHost;
|
|
|
|
|
}
|
2011-11-16 15:00:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|