All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.the_fireplace.grandeconomy.command.GeCommand Maven / Gradle / Ivy

There is a newer version: 4.1.0+1.16.5
Show newest version
package dev.the_fireplace.grandeconomy.command;

import dev.the_fireplace.grandeconomy.GrandEconomy;
import dev.the_fireplace.grandeconomy.api.CurrencyAPI;
import dev.the_fireplace.lib.api.command.FeedbackSender;
import dev.the_fireplace.lib.api.command.RegisterableCommand;
import dev.the_fireplace.lib.api.command.Requirements;

public abstract class GeCommand implements RegisterableCommand {

	protected final CurrencyAPI currencyAPI;
	protected final FeedbackSender feedbackSender;
	protected final Requirements requirements;

	protected GeCommand() {
		this.currencyAPI = CurrencyAPI.getInstance();
		this.feedbackSender = GrandEconomy.getFeedbackSender();
		this.requirements = Requirements.getInstance();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy