Add ClientVersionMain

This commit is contained in:
Adam
2016-04-22 20:21:07 -04:00
parent 3174cc49d5
commit eb83276050

View File

@@ -0,0 +1,14 @@
package net.runelite.deob.clientver;
import java.io.File;
import java.io.IOException;
public class ClientVersionMain
{
public static void main(String[] args) throws IOException
{
File jar = new File(args[0]);
ClientVersion cv = new ClientVersion(jar);
System.out.println(cv.getVersion());
}
}