aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/CustomTypes.cs
diff options
context:
space:
mode:
authorMelanie Thielker2014-09-24 00:21:14 +0200
committerMelanie Thielker2014-09-24 00:21:14 +0200
commit80f3e8edbc416c298c401aa02f36967a2de47b18 (patch)
tree6cc4739ae7b1d1e004b3532fef0b581ad2ccc5a4 /OpenSim/Framework/CustomTypes.cs
parentAdd a link number field to ColliderArgs (diff)
downloadopensim-SC_OLD-80f3e8edbc416c298c401aa02f36967a2de47b18.zip
opensim-SC_OLD-80f3e8edbc416c298c401aa02f36967a2de47b18.tar.gz
opensim-SC_OLD-80f3e8edbc416c298c401aa02f36967a2de47b18.tar.bz2
opensim-SC_OLD-80f3e8edbc416c298c401aa02f36967a2de47b18.tar.xz
Fix stupid stuff.
Diffstat (limited to 'OpenSim/Framework/CustomTypes.cs')
-rw-r--r--OpenSim/Framework/CustomTypes.cs19
1 files changed, 11 insertions, 8 deletions
diff --git a/OpenSim/Framework/CustomTypes.cs b/OpenSim/Framework/CustomTypes.cs
index 6ad3456..d109c26 100644
--- a/OpenSim/Framework/CustomTypes.cs
+++ b/OpenSim/Framework/CustomTypes.cs
@@ -27,14 +27,17 @@
27 27
28using System; 28using System;
29 29
30public const sbyte CustomTypeBase = 0x60; 30namespace OpenSim.Framework
31
32public enum CustomAssetType : sbyte
33{ 31{
34 AnimationSet = 0x60, 32 public enum CustomAssetType : sbyte
35} 33 {
34 CustomTypeBase = 0x60,
35 AnimationSet = 0x60,
36 }
36 37
37public enum CustomInventoryType : sbyte 38 public enum CustomInventoryType : sbyte
38{ 39 {
39 AnimationSet = 0x60, 40 CustomTypeBase = 0x60,
41 AnimationSet = 0x60,
42 }
40} 43}