8 lines
193 B
C++
8 lines
193 B
C++
#include "../extension.h"
|
|
|
|
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
|
|
{
|
|
if (sentenceInfo["hook address"] == -1) return false;
|
|
sentence += L"\r\n";
|
|
return true;
|
|
} |