diff options
| author | davidovski <david@davidovski.xyz> | 2025-10-11 04:55:51 +0100 |
|---|---|---|
| committer | davidovski <david@davidovski.xyz> | 2025-10-11 04:55:51 +0100 |
| commit | 10b327e9f6441a8863227ce3e075a5a587654065 (patch) | |
| tree | 5e94ecc91290febacf5181d3596563a7a24bd010 /src/main/java/net/uomc/mineshaft/resources/commands/ResourceCommand.java | |
v0.3.1
Diffstat (limited to 'src/main/java/net/uomc/mineshaft/resources/commands/ResourceCommand.java')
| -rw-r--r-- | src/main/java/net/uomc/mineshaft/resources/commands/ResourceCommand.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/net/uomc/mineshaft/resources/commands/ResourceCommand.java b/src/main/java/net/uomc/mineshaft/resources/commands/ResourceCommand.java new file mode 100644 index 0000000..9d99e0e --- /dev/null +++ b/src/main/java/net/uomc/mineshaft/resources/commands/ResourceCommand.java @@ -0,0 +1,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; + } +} |
