mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
15 lines
No EOL
385 B
C#
15 lines
No EOL
385 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Penumbra.GameData.Structs
|
|
{
|
|
[StructLayout( LayoutKind.Sequential, Pack = 1 )]
|
|
public readonly struct ActorArmor
|
|
{
|
|
public readonly SetId Set;
|
|
public readonly byte Variant;
|
|
public readonly StainId Stain;
|
|
|
|
public override string ToString()
|
|
=> $"{Set},{Variant},{Stain}";
|
|
}
|
|
} |