aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces/IEventQueue.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Interfaces/IEventQueue.cs')
-rw-r--r--OpenSim/Region/Interfaces/IEventQueue.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Interfaces/IEventQueue.cs b/OpenSim/Region/Interfaces/IEventQueue.cs
index a11eebe..42fdcae 100644
--- a/OpenSim/Region/Interfaces/IEventQueue.cs
+++ b/OpenSim/Region/Interfaces/IEventQueue.cs
@@ -28,6 +28,7 @@
28using System; 28using System;
29using OpenSim.Framework; 29using OpenSim.Framework;
30using OpenMetaverse; 30using OpenMetaverse;
31using OpenMetaverse.StructuredData;
31using System.Collections.Generic; 32using System.Collections.Generic;
32using System.Text; 33using System.Text;
33 34
@@ -35,6 +36,6 @@ namespace OpenSim.Region.Interfaces
35{ 36{
36 public interface IEventQueue 37 public interface IEventQueue
37 { 38 {
38 bool Enqueue(object o, UUID avatarID); 39 bool Enqueue(LLSD o, UUID avatarID);
39 } 40 }
40} 41}