2022-05-13 00:59:03 -07:00
|
|
|
|
using Robust.Shared.Serialization;
|
2021-03-28 08:26:32 +02:00
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.CharacterAppearance
|
2021-03-28 08:26:32 +02:00
|
|
|
|
{
|
|
|
|
|
|
[Flags]
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum SpriteAccessoryCategories
|
|
|
|
|
|
{
|
|
|
|
|
|
None = 0,
|
|
|
|
|
|
HumanHair = 1 << 0,
|
|
|
|
|
|
HumanFacialHair = 1 << 1,
|
|
|
|
|
|
VoxHair = 1 << 2,
|
|
|
|
|
|
VoxFacialHair = 1 << 3
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|