aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-12 19:46:23 +0100
committerJustin Clark-Casey (justincc)2010-07-12 19:46:23 +0100
commit4a92046b589a0ced240cbf5b174855daf5504a4f (patch)
tree6e2e993c495f02c5d93e5298d0dbea34ce1ddc31 /OpenSim/Region/Framework/Interfaces/IMoapModule.cs
parentImplement llGetPrimMediaParams() (diff)
downloadopensim-SC_OLD-4a92046b589a0ced240cbf5b174855daf5504a4f.zip
opensim-SC_OLD-4a92046b589a0ced240cbf5b174855daf5504a4f.tar.gz
opensim-SC_OLD-4a92046b589a0ced240cbf5b174855daf5504a4f.tar.bz2
opensim-SC_OLD-4a92046b589a0ced240cbf5b174855daf5504a4f.tar.xz
implement llSetPrimMediaParams()
Untested
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IMoapModule.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IMoapModule.cs b/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
index 4447f34..31bb6d8 100644
--- a/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IMoapModule.cs
@@ -39,9 +39,19 @@ namespace OpenSim.Region.Framework.Interfaces
39 /// <summary> 39 /// <summary>
40 /// Get the media entry for a given prim face. 40 /// Get the media entry for a given prim face.
41 /// </summary> 41 /// </summary>
42 /// A copy of the media entry is returned rather than the original, so this can be altered at will without
43 /// affecting the original settings.
42 /// <param name="part"></param> 44 /// <param name="part"></param>
43 /// <param name="face"></param> 45 /// <param name="face"></param>
44 /// <returns></returns> 46 /// <returns></returns>
45 MediaEntry GetMediaEntry(SceneObjectPart part, int face); 47 MediaEntry GetMediaEntry(SceneObjectPart part, int face);
46 } 48
49 /// <summary>
50 /// Set the media entry for a given prim face.
51 /// </summary>
52 /// <param name="SceneObjectPart"></param>
53 /// <param name="face"></param>
54 /// <param name="me"></param>
55 void SetMediaEntry(SceneObjectPart part, int face, MediaEntry me);
56 }
47} \ No newline at end of file 57} \ No newline at end of file