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