blob: 9d99e0e46b39a87aef5462c189b45b532fccbf86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package net.uomc.mineshaft.resources.commands;
import com.mouldycheerio.dbot.commands.DetailedCommand;
import net.uomc.mineshaft.resources.ResourceManager;
public abstract class ResourceCommand extends DetailedCommand {
private ResourceManager resourceManager;
public ResourceCommand(ResourceManager resourceManager) {
this.resourceManager = resourceManager;
}
public ResourceManager getResourceManager() {
return resourceManager;
}
}
|