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