mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
17 lines
335 B
C
17 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;
|
||
|
|
};
|