aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs68
1 files changed, 0 insertions, 68 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index 2ddcf7b..b07b43c 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -1736,73 +1736,5 @@ namespace OpenSim.Region.Environment.Scenes
1736 { 1736 {
1737 } 1737 }
1738 } 1738 }
1739
1740 public class TaskInventoryItem
1741 {
1742 /// <summary>
1743 /// Inventory types
1744 /// </summary>
1745 public static string[] InvTypes = new string[]
1746 {
1747 "texture",
1748 "sound",
1749 "",
1750 "",
1751 "",
1752 "",
1753 "",
1754 "",
1755 "",
1756 "",
1757 "lsl_text",
1758 ""
1759 };
1760
1761 /// <summary>
1762 /// Asset types
1763 /// </summary>
1764 public static string[] Types = new string[]
1765 {
1766 "texture",
1767 "sound",
1768 "",
1769 "",
1770 "",
1771 "",
1772 "",
1773 "",
1774 "",
1775 "",
1776 "lsltext",
1777 ""
1778 };
1779
1780 public LLUUID item_id = LLUUID.Zero;
1781 public LLUUID parent_id = LLUUID.Zero; //parent folder id
1782
1783 public uint base_mask = FULL_MASK_PERMISSIONS_GENERAL;
1784 public uint owner_mask = FULL_MASK_PERMISSIONS_GENERAL;
1785 public uint group_mask = FULL_MASK_PERMISSIONS_GENERAL;
1786 public uint everyone_mask = FULL_MASK_PERMISSIONS_GENERAL;
1787 public uint next_owner_mask = FULL_MASK_PERMISSIONS_GENERAL;
1788 public LLUUID creator_id = LLUUID.Zero;
1789 public LLUUID owner_id = LLUUID.Zero;
1790 public LLUUID last_owner_id = LLUUID.Zero;
1791 public LLUUID group_id = LLUUID.Zero;
1792
1793 public LLUUID asset_id = LLUUID.Zero;
1794 public string type = "";
1795 public string inv_type = "";
1796 public uint flags = 0;
1797 public string name = "";
1798 public string desc = "";
1799 public uint creation_date = 0;
1800
1801 public LLUUID ParentPartID = LLUUID.Zero;
1802
1803 public TaskInventoryItem()
1804 {
1805 }
1806 }
1807 } 1739 }
1808} 1740}