Server.GameLoginEventArgs.GameLoginEventArgs C# (CSharp) 메소드

GameLoginEventArgs() 공개 메소드

public GameLoginEventArgs ( Server.Network.NetState state, string un, string pw ) : System
state Server.Network.NetState
un string
pw string
리턴 System
		public GameLoginEventArgs( NetState state, string un, string pw )
		{
			m_State = state;
			m_Username = un;
			m_Password = pw;
		}
	}
GameLoginEventArgs