Files
libremetaverse/LibreMetaverse.RLV/RlvWearableType.cs
nooperation d905210ecf Initial commit of LibreMetaverse.RLV and LibreMetaverse.RLV.Tests.
This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
2025-08-17 19:55:33 -04:00

25 lines
448 B
C#

namespace LibreMetaverse.RLV
{
public enum RlvWearableType
{
Shape = 0,
Skin = 1,
Hair = 2,
Eyes = 3,
Shirt = 4,
Pants = 5,
Shoes = 6,
Socks = 7,
Jacket = 8,
Gloves = 9,
Undershirt = 10,
Underpants = 11,
Skirt = 12,
Alpha = 13,
Tattoo = 14,
Physics = 15,
Universal = 16,
Invalid = 255
}
}