42 lines
790 B
C#
42 lines
790 B
C#
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace Filtration.ObjectModel.Enums
|
|||
|
{
|
|||
|
public enum BlockItemOrdering
|
|||
|
{
|
|||
|
Action,
|
|||
|
LinkedSockets,
|
|||
|
Sockets,
|
|||
|
Quality,
|
|||
|
Identified,
|
|||
|
Corrupted,
|
|||
|
ElderItem,
|
|||
|
ShaperItem,
|
|||
|
MapTier,
|
|||
|
ShapedMap,
|
|||
|
ElderMap,
|
|||
|
SocketGroup,
|
|||
|
Height,
|
|||
|
Width,
|
|||
|
ItemLevel,
|
|||
|
DropLevel,
|
|||
|
GemLevel,
|
|||
|
StackSize,
|
|||
|
Rarity,
|
|||
|
Class,
|
|||
|
BaseType,
|
|||
|
Prophecy,
|
|||
|
HasExplicitMod,
|
|||
|
SetTextColor,
|
|||
|
SetBackgroundColor,
|
|||
|
SetBorderColor,
|
|||
|
SetFontSize,
|
|||
|
PlayAlertSound,
|
|||
|
PlayAlertSoundPositional,
|
|||
|
DisableDropSound,
|
|||
|
MinimapIcon,
|
|||
|
PlayEffect,
|
|||
|
CustomAlertSound
|
|||
|
}
|
|||
|
}
|