Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View BlackBeltPanda's full-sized avatar
🏠
Working from home

BlackBeltPanda

🏠
Working from home
View GitHub Profile
public class Main extends JavaPlugin {
private static Main instance;
public void onEnable(){
instance = this;
}
public void onDisable(){
Manager.miners = null;
public class Machine {
private Location loc;
private boolean active = true;
private int limit;
public Machine(Location loc){
this.loc = loc;
}