コード例 #1
0
ファイル: InventoryManager.cs プロジェクト: RavenB/gridsearch
 ///<summary>Raises the FindObjectByPath Event</summary>
 /// <param name="e">A FindObjectByPathEventArgs object containing
 /// the data sent from the simulator</param>
 protected virtual void OnFindObjectByPathReply(FindObjectByPathReplyEventArgs e)
 {
     EventHandler<FindObjectByPathReplyEventArgs> handler = m_FindObjectByPathReply;
     if (handler != null)
         handler(this, e);
 }
コード例 #2
0
ファイル: AllEvents.cs プロジェクト: drzo/opensim4opencog
 public virtual void Inventory_OnFindObjectByPath(object sender, FindObjectByPathReplyEventArgs e) { OnEvent("On-Find-Object-By-Path", paramNamesOnFindObjectByPath, paramTypesOnFindObjectByPath, e); }