mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-05-21 21:49:46 +00:00
Replace README banner with LCRE-banner.png. Add SWF inspection and ARC archive tools. Ignore compiled .class, .swf intermediates, and staging directory in tools/.
13 lines
512 B
Java
13 lines
512 B
Java
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()) + ")");
|
|
}
|
|
}
|
|
}
|
|
}
|