Split Hello classes into packages

This commit is contained in:
alisolarflare 2017-04-18 13:37:00 -04:00
parent ddac6fbeae
commit 01316ad297
9 changed files with 16 additions and 8 deletions

View file

@ -3,6 +3,14 @@ package buttondevteam.presents.hello;
import org.bukkit.plugin.java.JavaPlugin;
import buttondevteam.presents.architecture.Component;
import buttondevteam.presents.hello.commands.HelloCommand;
import buttondevteam.presents.hello.commands.HelloLoad;
import buttondevteam.presents.hello.commands.HelloSave;
import buttondevteam.presents.hello.commands.HelloTime;
import buttondevteam.presents.hello.effects.HelloBedsplode;
import buttondevteam.presents.hello.effects.HelloCow;
import buttondevteam.presents.hello.effects.HelloItem;
import buttondevteam.presents.hello.effects.HelloMagicPotato;
public class Hello extends Component{

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.commands;
import org.bukkit.command.CommandSender;
import org.bukkit.plugin.java.JavaPlugin;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.commands;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.commands;
import java.util.Arrays;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.commands;
import java.text.SimpleDateFormat;
import java.util.Date;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.effects;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.effects;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.effects;
import org.bukkit.Material;
import org.bukkit.entity.Player;

View file

@ -1,4 +1,4 @@
package buttondevteam.presents.hello;
package buttondevteam.presents.hello.effects;
import java.util.ArrayList;