mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
12 lines
355 B
C
12 lines
355 B
C
#pragma once
|
|
|
|
struct TESObjectREFR;
|
|
|
|
struct SubtitleManager
|
|
{
|
|
static SubtitleManager* Get() noexcept;
|
|
|
|
// TODO(cosideci): confirm usage of bool
|
|
void ShowSubtitle(TESObjectREFR* apSpeaker, const char* apSubtitleText, TESTopicInfo* apTopicInfo, bool aIsInDialogue = false) noexcept;
|
|
void* HideSubtitle(TESObjectREFR* apSpeaker) noexcept;
|
|
};
|