예제 #1
0
 public WhoisCompleteEventArgs(Core.WhoisType Type, HoNUserInfoInGameArgs InGameArgs, HoNUserInfoNoExistArgs NoExistArgs, HoNUserInfoOfflineArgs OfflineArgs, HoNUserInfoOnlineArgs OnlineArgs)
 {
     this._type = Type;
     this._ingameargs = InGameArgs;
     this._noexistargs = NoExistArgs;
     this._offlineargs = OfflineArgs;
     this._onlineargs = OnlineArgs;
 }
예제 #2
0
파일: Core.cs 프로젝트: akajai/newerth-bot
 void hon_onUserInfoInGame(object sender, HoNUserInfoInGameArgs e)
 {
     WhoisType Type = WhoisType.USER_INFO_INGAME;
     if (onWhoisComplete != null) onWhoisComplete(this, new WhoisCompleteEventArgs(Type, e, null, null, null));
 }