aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ParcelMediaCommandEnum.cs
blob: 7ccedd0a6d8486c92731580e4301fa8e85531c94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.Framework
{
    public enum ParcelMediaCommandEnum
    {
        Stop = 0,
        Pause = 1,
        Play = 2,
        Loop = 3,
        Texture = 4,
        Url = 5,
        Time = 6,
        Agent = 7,
        Unload = 8,
        AutoAlign = 9,
        Type = 10,
        Size = 11,
        Desc = 12
    }
}