Some Glamourer stuff

This commit is contained in:
Ottermandias 2023-04-29 12:25:24 +02:00
parent a293e7dfea
commit 7d1d6ac829
4 changed files with 42 additions and 15 deletions

View file

@ -6,6 +6,9 @@ namespace Penumbra.GameData.Structs;
public readonly unsafe struct CharacterEquip
{
public const int Slots = 10;
public const int Size = CharacterArmor.Size * Slots;
public static readonly CharacterEquip Null = new(null);
private readonly CharacterArmor* _armor;