diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/MockScriptEngine.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/MockScriptEngine.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockScriptEngine.cs b/OpenSim/Tests/Common/Mock/MockScriptEngine.cs index b444241..d7a144c 100644 --- a/OpenSim/Tests/Common/Mock/MockScriptEngine.cs +++ b/OpenSim/Tests/Common/Mock/MockScriptEngine.cs | |||
@@ -94,8 +94,10 @@ namespace OpenSim.Tests.Common | |||
94 | 94 | ||
95 | public Type ReplaceableInterface { get { return null; } } | 95 | public Type ReplaceableInterface { get { return null; } } |
96 | 96 | ||
97 | #pragma warning disable 0067 | ||
97 | public event ScriptRemoved OnScriptRemoved; | 98 | public event ScriptRemoved OnScriptRemoved; |
98 | public event ObjectRemoved OnObjectRemoved; | 99 | public event ObjectRemoved OnObjectRemoved; |
100 | #pragma warning restore 0067 | ||
99 | 101 | ||
100 | public string GetXMLState (UUID itemID) | 102 | public string GetXMLState (UUID itemID) |
101 | { | 103 | { |
@@ -262,5 +264,9 @@ namespace OpenSim.Tests.Common | |||
262 | { | 264 | { |
263 | PostedEvents.Clear(); | 265 | PostedEvents.Clear(); |
264 | } | 266 | } |
267 | |||
268 | public void SleepScript(UUID itemID, int delay) | ||
269 | { | ||
270 | } | ||
265 | } | 271 | } |
266 | } \ No newline at end of file | 272 | } |