mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-02 13:53:42 +01:00
Some object reloading changes.
This commit is contained in:
parent
e7282384f5
commit
8d2e84eecf
3 changed files with 353 additions and 387 deletions
14
Penumbra/Interop/Structs/DrawState.cs
Normal file
14
Penumbra/Interop/Structs/DrawState.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace Penumbra.Interop.Structs;
|
||||
|
||||
[Flags]
|
||||
public enum DrawState : uint
|
||||
{
|
||||
Invisibility = 0x00_00_00_02,
|
||||
IsLoading = 0x00_00_08_00,
|
||||
SomeNpcFlag = 0x00_00_01_00,
|
||||
MaybeCulled = 0x00_00_04_00,
|
||||
MaybeHiddenMinion = 0x00_00_80_00,
|
||||
MaybeHiddenSummon = 0x00_80_00_00,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue