Stubbing in Link's Adventure

This commit is contained in:
Dan Buch 2015-04-24 19:58:05 -04:00
parent a029725d8a
commit 427739bd55
4 changed files with 19 additions and 10 deletions

1
bukkit/.gitignore vendored
View File

@ -15,3 +15,4 @@ whitelist.json
world/ world/
world_nether/ world_nether/
world_the_end/ world_the_end/
plugins/

View File

@ -1,7 +0,0 @@
package com.github.linkadventure;
import org.bukkit.plugin.java.JavaPlugin;
public final class LinksAdventure extends JavaPlugin {
}

View File

@ -0,0 +1,15 @@
package com.meatballhat.linksadventure;
import org.bukkit.plugin.java.JavaPlugin;
public final class LinksAdventure extends JavaPlugin {
@Override
public void onEnable() {
getLogger().info("WELCOME TO LINK'S ADVENTURE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
}
@Override
public void onDisable() {
getLogger().info("onDisable has been invoked!");
}
}

View File

@ -1,3 +1,3 @@
name: Link's Adventure name: "LinksAdventure"
main: com.meatballhat.linksadventure.LinksAdventure main: "com.meatballhat.linksadventure.LinksAdventure"
version: 0.1.0-SNAPSHOT version: "0.1.0-SNAPSHOT"