diff options
author | Melanie | 2011-10-25 02:27:26 +0100 |
---|---|---|
committer | Melanie | 2011-10-25 02:27:26 +0100 |
commit | 496c647ab59f47cf51538ec544b8e8c1f94a9cf4 (patch) | |
tree | 9272918f5694f62b37c54c0594fbe287371f6b99 /OpenSim/Region/Framework/Interfaces | |
parent | Merge commit 'ddcb88ff53d2348dfc81451a3ec61bb643c49aff' into bigmerge (diff) | |
parent | Implement osNpcStand(<npc-id>) (diff) | |
download | opensim-SC_OLD-496c647ab59f47cf51538ec544b8e8c1f94a9cf4.zip opensim-SC_OLD-496c647ab59f47cf51538ec544b8e8c1f94a9cf4.tar.gz opensim-SC_OLD-496c647ab59f47cf51538ec544b8e8c1f94a9cf4.tar.bz2 opensim-SC_OLD-496c647ab59f47cf51538ec544b8e8c1f94a9cf4.tar.xz |
Merge commit 'de161585c0960a93911f446f0179441ba5470245' into bigmerge
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/INPCModule.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/INPCModule.cs b/OpenSim/Region/Framework/Interfaces/INPCModule.cs index 9dd8c79..b65f82c 100644 --- a/OpenSim/Region/Framework/Interfaces/INPCModule.cs +++ b/OpenSim/Region/Framework/Interfaces/INPCModule.cs | |||
@@ -104,6 +104,14 @@ namespace OpenSim.Region.Framework.Interfaces | |||
104 | bool Sit(UUID agentID, UUID partID, Scene scene); | 104 | bool Sit(UUID agentID, UUID partID, Scene scene); |
105 | 105 | ||
106 | /// <summary> | 106 | /// <summary> |
107 | /// Stand a sitting NPC. | ||
108 | /// </summary> | ||
109 | /// <param name="agentID"></param> | ||
110 | /// <param name="scene"></param> | ||
111 | /// <returns>true if the stand succeeded, false if not</returns> | ||
112 | bool Stand(UUID agentID, Scene scene); | ||
113 | |||
114 | /// <summary> | ||
107 | /// Delete an NPC. | 115 | /// Delete an NPC. |
108 | /// </summary> | 116 | /// </summary> |
109 | /// <param name="agentID">The UUID of the NPC</param> | 117 | /// <param name="agentID">The UUID of the NPC</param> |