From 80f3e8edbc416c298c401aa02f36967a2de47b18 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Wed, 24 Sep 2014 00:21:14 +0200 Subject: [PATCH] Fix stupid stuff. --- OpenSim/Framework/CustomTypes.cs | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/OpenSim/Framework/CustomTypes.cs b/OpenSim/Framework/CustomTypes.cs index 6ad3456c27..d109c2653b 100644 --- a/OpenSim/Framework/CustomTypes.cs +++ b/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, + } }