implement W3D script

This commit is contained in:
Benjamin Funke 2025-04-07 09:31:46 +02:00
commit 08a2936d16

14
db/Binary/bin.W3D.1.sg Normal file
View file

@ -0,0 +1,14 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// This Script supports following formats: W3D
init("format", "W3D");
function detect() {
if (Binary.compare("'IFX'")) {
sVersion = "Shockwave 3D";
bDetected = true;
}
return result();
}