1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
using System;
namespace Microsoft.Xna.Framework.Net
{
internal class CommandSessionStateChange : ICommand
{
NetworkSessionState newState;
NetworkSessionState oldState;
public CommandSessionStateChange (NetworkSessionState newState, NetworkSessionState oldState)
{
this.newState = newState;
this.oldState = oldState;
}
public NetworkSessionState NewState
{
get { return newState; }
}
public NetworkSessionState OldState
{
get { return oldState; }
}
public CommandEventType Command {
get { return CommandEventType.SessionStateChange; }
}
}
}
|