DREAMFIRE Docs ← Back to site
Loading...
Searching...
No Matches
SmartInvsPlugin.java
Go to the documentation of this file.
1package com.dreamfirestudios.dreamcore.DreamSmartInvs;
2
3import org.bukkit.plugin.java.JavaPlugin;
4
5public class SmartInvsPlugin {
6
7 private InventoryManager invManager;
8 public InventoryManager manager() { return invManager; }
9
10 public SmartInvsPlugin(JavaPlugin javaPlugin){
11 invManager = new InventoryManager(javaPlugin);
12 invManager.init();
13 }
14
15}