aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ParcelMediaCommandEnum.cs
diff options
context:
space:
mode:
authorlbsa712008-07-08 14:17:59 +0000
committerlbsa712008-07-08 14:17:59 +0000
commitb7fc172254794a23cba4cb1313c6951f55ed4b2a (patch)
treef7bed305d39b32780f7ad8c46de43d0d5a7c824d /OpenSim/Framework/ParcelMediaCommandEnum.cs
parent* Changed casing of some archaic methods to conform with code standards (diff)
downloadopensim-SC_OLD-b7fc172254794a23cba4cb1313c6951f55ed4b2a.zip
opensim-SC_OLD-b7fc172254794a23cba4cb1313c6951f55ed4b2a.tar.gz
opensim-SC_OLD-b7fc172254794a23cba4cb1313c6951f55ed4b2a.tar.bz2
opensim-SC_OLD-b7fc172254794a23cba4cb1313c6951f55ed4b2a.tar.xz
* Added experimental SendParcelMediaCommand and SendParcelMediaUpdate to IClientAPI. These methods have not been tested, but feel free to start wiring them to llParcelMediaCommandList.
Diffstat (limited to 'OpenSim/Framework/ParcelMediaCommandEnum.cs')
-rw-r--r--OpenSim/Framework/ParcelMediaCommandEnum.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/OpenSim/Framework/ParcelMediaCommandEnum.cs b/OpenSim/Framework/ParcelMediaCommandEnum.cs
new file mode 100644
index 0000000..e9a2cec
--- /dev/null
+++ b/OpenSim/Framework/ParcelMediaCommandEnum.cs
@@ -0,0 +1,23 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Framework
6{
7 public enum ParcelMediaCommandEnum
8 {
9 Stop = 0,
10 Pause = 1,
11 Play = 2,
12 Loop = 3,
13 Texture = 4,
14 Url = 5,
15 Time = 6,
16 Agent = 7,
17 Unload = 8,
18 AutoAlign = 9,
19 Type = 10,
20 Size = 11,
21 Desc = 12
22 }
23}