mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-22 11:55:12 +01:00
Getter class
This commit is contained in:
parent
acbf1fb589
commit
505e961ea8
50
src/main/java/com/badbones69/crazyauctions/Starter.java
Normal file
50
src/main/java/com/badbones69/crazyauctions/Starter.java
Normal file
@ -0,0 +1,50 @@
|
||||
package com.badbones69.crazyauctions;
|
||||
|
||||
import com.badbones69.crazyauctions.api.CrazyManager;
|
||||
import com.badbones69.crazyauctions.api.FileManager;
|
||||
import com.badbones69.crazyauctions.api.economy.vault.VaultSupport;
|
||||
import com.badbones69.crazyauctions.utils.SkullCreator;
|
||||
|
||||
public class Starter {
|
||||
|
||||
private FileManager fileManager;
|
||||
|
||||
private CrazyManager crazyManager;
|
||||
|
||||
private VaultSupport vaultSupport;
|
||||
|
||||
private Methods methods;
|
||||
|
||||
private SkullCreator skullCreator;
|
||||
|
||||
public void run() {
|
||||
fileManager = new FileManager();
|
||||
crazyManager = new CrazyManager();
|
||||
|
||||
vaultSupport = new VaultSupport();
|
||||
|
||||
methods = new Methods();
|
||||
|
||||
skullCreator = new SkullCreator();
|
||||
}
|
||||
|
||||
public FileManager getFileManager() {
|
||||
return fileManager;
|
||||
}
|
||||
|
||||
public CrazyManager getCrazyManager() {
|
||||
return crazyManager;
|
||||
}
|
||||
|
||||
public VaultSupport getVaultSupport() {
|
||||
return vaultSupport;
|
||||
}
|
||||
|
||||
public Methods getMethods() {
|
||||
return methods;
|
||||
}
|
||||
|
||||
public SkullCreator getSkullCreator() {
|
||||
return skullCreator;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user