Initial commit

This commit is contained in:
Max Weber
2019-12-12 13:43:59 -07:00
commit 5d729565d7
11 changed files with 427 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.example;
import net.runelite.client.config.Config;
import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem;
@ConfigGroup("example")
public interface ExampleConfig extends Config
{
@ConfigItem(
keyName = "greeting",
name = "Welcome Greeting",
description = "The message to show to the user when they login"
)
default String greeting()
{
return "Hello";
}
}