Merge pull request #6 from TBMCPlugins/AliBranch

IIE War System and Discord Plugin Initialization
This commit is contained in:
alisolarflare 2016-06-24 20:34:13 -04:00 committed by GitHub
commit 59b9ca454f
21 changed files with 72 additions and 0 deletions

Binary file not shown.

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.DiscordPlugin;
public class DiscordPlugin {
}

View file

@ -0,0 +1,16 @@
package buttondevteam.alisolarflare.DiscordPlugin.helpers;
public class DiscordBotLink {
public void setRoleAsMinecraft(){
}
public void unsetRoleAsMinecraft(){
}
public void setRoleAsFlair(){
}
public void unsetRoleAsFlair(){
}
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.DiscordPlugin.listeners;
public class PrivateMessageListener {
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.IieWarSystem;
public class IieWarSystem {
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.IieWarSystem.commands;
public class ToggleWar {
}

View file

@ -0,0 +1,16 @@
package buttondevteam.alisolarflare.IieWarSystem.helpers;
import org.bukkit.entity.Player;
public class WarListManager {
public void createWarList(){
//stub
}
public void LoadWarList(){
//stub
}
public boolean isOnList(Player player){
return false;
//stub
}
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.IieWarSystem.listeners;
public class CreativeListener {
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.IieWarSystem.listeners;
public class ObsidianListener {
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.IieWarSystem.listeners;
public class SpawnEggListener {
}

View file

@ -0,0 +1,5 @@
package buttondevteam.alisolarflare.IieWarSystem.listeners;
public class TeleportListener {
}