~ruther/NosSmooth

ref: ecb4ceb20b0dbc5fc4a342415c109ccbb00996ca NosSmooth/Core/NosSmooth.Game/Data/Items/Equipment.cs -rw-r--r-- 1.0 KiB
ecb4ceb2 — Rutherther chore: make updates to get rid of warnings 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
//
//  Equipment.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.

namespace NosSmooth.Game.Data.Items;

/// <summary>
/// Information about character's equipment.
/// </summary>
/// <param name="Hat">The hat.</param>
/// <param name="Armor">The armor.</param>
/// <param name="MainWeapon">The main weapon.</param>
/// <param name="SecondaryWeapon">The secondary weapon.</param>
/// <param name="Mask">The mask.</param>
/// <param name="Fairy">The fairy.</param>
/// <param name="CostumeSuit">The costume suit.</param>
/// <param name="CostumeHat">The costume hat.</param>
/// <param name="WeaponSkin">The weapon skin.</param>
/// <param name="WingSkin">The wing skin.</param>
public record Equipment
(
     Item? Hat,
     UpgradeableItem? Armor,
     UpgradeableItem? MainWeapon,
     UpgradeableItem? SecondaryWeapon,
     Item? Mask,
     Item? Fairy,
     Item? CostumeSuit,
     Item? CostumeHat,
     short? WeaponSkin,
     short? WingSkin
);
Do not follow this link