Create api module, McMMOPlayer -> BukkitMMOPlayer

This commit is contained in:
Shane Freeder
2019-10-05 02:55:03 +01:00
parent d2028321d4
commit a84a9e9c38
86 changed files with 269 additions and 254 deletions

View File

@ -0,0 +1,3 @@
plugins {
`java-library`
}

View File

@ -0,0 +1,7 @@
package com.gmail.nossr50.mcmmo.api.data;
public interface MMOPlayer<N> {
N getPlayer();
}