mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
13 lines
No EOL
313 B
JavaScript
13 lines
No EOL
313 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: BJNFNE <bjnfne@web.de>
|
|
|
|
// https://en.wikipedia.org/wiki/RenderWare
|
|
meta("game engine", "RenderWare");
|
|
|
|
function detect() {
|
|
if (PE.isSectionNamePresent("_rwdseg") || PE.isSectionNamePresent("_rwcseg")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |