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