mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
17 lines
266 B
C
17 lines
266 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Dispatched whenever an actor talks
|
||
|
|
*/
|
||
|
|
struct DialogueEvent
|
||
|
|
{
|
||
|
|
DialogueEvent(uint32_t aActorID, String aVoiceFile)
|
||
|
|
: ActorID(aActorID)
|
||
|
|
, VoiceFile(aVoiceFile)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
uint32_t ActorID;
|
||
|
|
String VoiceFile;
|
||
|
|
};
|