Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,21 @@ namespace EEex {
void Sprite_Hook_OnBeforeEffectListMarshalled(CGameSprite* pSprite);
byte Sprite_Hook_OnGetAttackFrameType(CGameSprite* pSprite, byte numAttacks);

////////////
// UDAux //
////////////

void UDAux_Hook_OnBeforeAreaMarshal(CGameArea* pArea, unsigned char** ppData, unsigned int* pSize);
void UDAux_Hook_OnAreaContainerMarshal(CGameContainer* pContainer);
void UDAux_Hook_OnAfterAreaMarshal();
void UDAux_Hook_OnBeforeAreaUnmarshal(CGameArea* pArea, unsigned char* pData, unsigned int size);
void UDAux_Hook_OnAfterAreaContainerConstruct(CGameContainer* pContainer);
void UDAux_Hook_OnAfterAreaUnmarshal(int result);
void UDAux_Hook_OnBeforeStoreInventoryClear(CStore* pStore);
unsigned char* UDAux_Hook_OnStoreMarshalData(CStore* pStore, unsigned char* pData, unsigned int size, unsigned int* pOutSize);
void UDAux_Hook_OnBeforeStoreLoad(CStore* pStore, unsigned char* pData, CResStore* pResStore);
void UDAux_Hook_OnAfterStoreLoad(CStore* pStore);

////////////
// Action //
////////////
Expand Down
Loading