Initial commit

This commit is contained in:
Alex Matheson
2022-06-09 00:40:58 +10:00
commit 10ff406a1a
12 changed files with 464 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.example;
import net.runelite.client.RuneLite;
import net.runelite.client.externalplugins.ExternalPluginManager;
public class ExamplePluginTest
{
public static void main(String[] args) throws Exception
{
ExternalPluginManager.loadBuiltin(ExamplePlugin.class);
RuneLite.main(args);
}
}