2018-08-19 00:13:19 -04:00
|
|
|
#include "extensions.h"
|
|
|
|
|
2018-09-01 04:24:22 -04:00
|
|
|
bool ProcessSentence(std::wstring& sentence, const InfoForExtension* miscInfo)
|
2018-08-19 00:13:19 -04:00
|
|
|
{
|
2018-09-01 04:24:22 -04:00
|
|
|
if (GetProperty("hook address", miscInfo) == -1) return false;
|
|
|
|
sentence += L"\r\n";
|
|
|
|
return true;
|
2018-08-19 00:13:19 -04:00
|
|
|
}
|