Stubbing in Link's Adventure
This commit is contained in:
parent
a029725d8a
commit
427739bd55
1
bukkit/.gitignore
vendored
1
bukkit/.gitignore
vendored
@ -15,3 +15,4 @@ whitelist.json
|
|||||||
world/
|
world/
|
||||||
world_nether/
|
world_nether/
|
||||||
world_the_end/
|
world_the_end/
|
||||||
|
plugins/
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
package com.github.linkadventure;
|
|
||||||
|
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
|
||||||
|
|
||||||
public final class LinksAdventure extends JavaPlugin {
|
|
||||||
|
|
||||||
}
|
|
@ -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!");
|
||||||
|
}
|
||||||
|
}
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user