chore: add LCRE banner, SWF/ARC tools, ignore build artifacts

Replace README banner with LCRE-banner.png. Add SWF inspection
and ARC archive tools. Ignore compiled .class, .swf intermediates,
and staging directory in tools/.
This commit is contained in:
itsRevela
2026-03-29 21:14:34 -05:00
parent 967adf1e54
commit a4f55dde16
9 changed files with 216 additions and 1 deletions

12
tools/CheckSetImage.java Normal file
View File

@@ -0,0 +1,12 @@
import com.jpexs.decompiler.flash.tags.*;
import java.lang.reflect.*;
public class CheckSetImage {
public static void main(String[] args) {
for (Method m : DefineBitsLossless2Tag.class.getMethods()) {
if (m.getName().contains("mage") || m.getName().contains("itmap") || m.getName().contains("set")) {
System.out.println(m.getReturnType().getSimpleName() + " " + m.getName() + "(" + java.util.Arrays.toString(m.getParameterTypes()) + ")");
}
}
}
}