mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
15 lines
250 B
C
15 lines
250 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Dispatched whenever a new loaded actor has been detected in the environment.
|
||
|
|
*/
|
||
|
|
struct ActorAddedEvent
|
||
|
|
{
|
||
|
|
explicit ActorAddedEvent(const uint32_t aFormId)
|
||
|
|
: FormId(aFormId)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
uint32_t FormId;
|
||
|
|
};
|