~ruther/NosSmooth

NosSmooth/Data/NosSmooth.Data.Abstractions/Enums/EquipmentSlot.cs -rw-r--r-- 852 bytes
8e5e00cc — František Boháček chore: bump packet versions 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
//  EquipmentSlot.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Diagnostics.CodeAnalysis;
#pragma warning disable CS1591

namespace NosSmooth.Data.Abstractions.Enums;

/// <summary>
/// An equipment slot that wearable item goes to.
/// </summary>
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1602:Enumeration items should be documented", Justification = "Self-explanatory.")]
public enum EquipmentSlot
{
    MainWeapon = 0,
    Armor = 1,
    Hat = 2,
    Gloves = 3,
    Boots = 4,
    SecondaryWeapon = 5,
    Necklace = 6,
    Ring = 7,
    Bracelet = 8,
    Mask = 9,
    Fairy = 10,
    Amulet = 11,
    Sp = 12,
    CostumeSuit = 13,
    CostumeHat = 14,
    WeaponSkin = 15,
    Wings = 16
}
Do not follow this link