mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
17 lines
598 B
C#
17 lines
598 B
C#
using Glamourer.Customization;
|
|
using Penumbra.GameData.Structs;
|
|
|
|
namespace Glamourer.Interop;
|
|
|
|
public interface IDesignable
|
|
{
|
|
public bool Valid { get; }
|
|
public uint ModelId { get; }
|
|
public Customize Customize { get; }
|
|
public CharacterEquip Equip { get; }
|
|
public CharacterWeapon MainHand { get; }
|
|
public CharacterWeapon OffHand { get; }
|
|
public bool VisorEnabled { get; }
|
|
public bool WeaponEnabled { get; }
|
|
public bool IsWet { get; }
|
|
}
|