mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 17:10:54 +01:00
16 lines
335 B
C
16 lines
335 B
C
#pragma once
|
|
|
|
/**
|
|
* @brief Dispatched when a spell casting is interrupted locally.
|
|
*/
|
|
struct InterruptCastEvent
|
|
{
|
|
InterruptCastEvent(uint32_t aCasterFormID, int32_t aCastingSource)
|
|
: CasterFormID(aCasterFormID)
|
|
, CastingSource(aCastingSource)
|
|
{
|
|
}
|
|
|
|
uint32_t CasterFormID;
|
|
int32_t CastingSource;
|
|
};
|