mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
18 lines
434 B
C#
18 lines
434 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Game.ClientState.Structs
|
|
{
|
|
/// <summary>
|
|
/// Native memory representation of a FFXIV status effect.
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct StatusEffect
|
|
{
|
|
public short EffectId;
|
|
public byte StackCount;
|
|
public byte Param;
|
|
public float Duration;
|
|
public int OwnerId;
|
|
}
|
|
}
|