Put commands and listener in their own files

This commit is contained in:
Jimmy Allen 2018-07-27 19:30:56 +12:00
commit d90af75c90
3 changed files with 4 additions and 5 deletions

5
.gitignore vendored
View File

@ -1,6 +1,4 @@
*.class
# Package Files #
*.jar
*.war
*.ear
@ -8,3 +6,6 @@
target/
.vscode/
server/
.settings
.project
.classpath

View File

@ -1,10 +1,8 @@
package nz.jimmy.easyspawn;
import org.bukkit.Location;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.configuration.Configuration;
import org.bukkit.entity.Player;
/**

View File

@ -10,4 +10,4 @@ public class EasySpawn extends JavaPlugin {
new Spawn(this);
new Bed(this);
}
}
}