Melanie Thielker 9 лет назад
Родитель
Сommit
80f3e8edbc
1 измененных файлов с 11 добавлено и 8 удалено
  1. 11 8
      OpenSim/Framework/CustomTypes.cs

+ 11 - 8
OpenSim/Framework/CustomTypes.cs

@@ -27,14 +27,17 @@
 
 using System;
 
-public const sbyte CustomTypeBase = 0x60;
-
-public enum CustomAssetType : sbyte
+namespace OpenSim.Framework
 {
-    AnimationSet = 0x60,
-}
+    public enum CustomAssetType : sbyte
+    {
+        CustomTypeBase = 0x60,
+        AnimationSet = 0x60,
+    }
 
-public enum CustomInventoryType : sbyte
-{
-    AnimationSet = 0x60,
+    public enum CustomInventoryType : sbyte
+    {
+        CustomTypeBase = 0x60,
+        AnimationSet = 0x60,
+    }
 }