mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCE-Revelations.git
synced 2026-06-11 02:45:01 +00:00
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:
12
tools/CheckSetImage.java
Normal file
12
tools/CheckSetImage.java
Normal 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()) + ")");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user