diff options
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs index 9864074..9b2cdda 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | |||
@@ -108,6 +108,7 @@ namespace SimpleApp | |||
108 | public event CreateNewInventoryItem OnCreateNewInventoryItem; | 108 | public event CreateNewInventoryItem OnCreateNewInventoryItem; |
109 | public event CreateInventoryFolder OnCreateNewInventoryFolder; | 109 | public event CreateInventoryFolder OnCreateNewInventoryFolder; |
110 | public event UpdateInventoryFolder OnUpdateInventoryFolder; | 110 | public event UpdateInventoryFolder OnUpdateInventoryFolder; |
111 | public event MoveInventoryFolder OnMoveInventoryFolder; | ||
111 | public event FetchInventoryDescendents OnFetchInventoryDescendents; | 112 | public event FetchInventoryDescendents OnFetchInventoryDescendents; |
112 | public event PurgeInventoryDescendents OnPurgeInventoryDescendents; | 113 | public event PurgeInventoryDescendents OnPurgeInventoryDescendents; |
113 | public event FetchInventory OnFetchInventory; | 114 | public event FetchInventory OnFetchInventory; |
@@ -317,7 +318,7 @@ namespace SimpleApp | |||
317 | { | 318 | { |
318 | } | 319 | } |
319 | 320 | ||
320 | public virtual void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items, int subFoldersCount) | 321 | public virtual void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items, List<InventoryFolderBase> folders, int subFoldersCount) |
321 | { | 322 | { |
322 | } | 323 | } |
323 | 324 | ||