Current progress on data accessors

Pushing because I started on stuff and don't wanna lose it...
This commit is contained in:
Shane Freeder
2020-01-20 21:52:50 +00:00
parent ec58a0e81f
commit 21a0a05683
10 changed files with 114 additions and 32 deletions

View File

@ -2,6 +2,7 @@ package com.gmail.nossr50.mcmmo.bukkit;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.mcmmo.api.platform.PlatformProvider;
import com.gmail.nossr50.mcmmo.api.platform.util.MetadataStore;
import org.bukkit.event.HandlerList;
import org.bukkit.plugin.java.JavaPlugin;
@ -25,4 +26,9 @@ public class BukkitBoostrap extends JavaPlugin implements PlatformProvider {
core.debug("Unregister all events...");
HandlerList.unregisterAll(this); // Cancel event registrations
}
@Override
public MetadataStore getMetadataStore() {
return null;
}
}