[WIP] Start breakout of mcmmo plugin

This commit starts work on the seperation of mcmmo and platform logic,
there is still a fair amount of work to go before this will compile,
down the line (potentially much further), bukkit logic will be stripped
out of -core
This commit is contained in:
Shane Freeder
2019-10-09 21:53:04 +01:00
parent 1fbcf698c6
commit eee09d8d76
7 changed files with 104 additions and 11 deletions

View File

@ -0,0 +1,4 @@
package com.gmail.nossr50.mcmmo.api;
public interface McMMOApi {
}

View File

@ -0,0 +1,10 @@
package com.gmail.nossr50.mcmmo.api.platform;
import java.util.logging.Logger;
public interface PlatformProvider {
Logger getLogger();
void tearDown();
}