Fix stupid stuff.

avinationmerge
Melanie Thielker 2014-09-24 00:21:14 +02:00
parent a6b27a7aa4
commit 80f3e8edbc
1 changed files with 11 additions and 8 deletions

View File

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