Started implementation of the CatalogPanel

This commit is contained in:
Florian CUNY 2019-04-18 14:42:00 +02:00
parent c47a41f3fc
commit e7cd9d1453

View File

@ -0,0 +1,15 @@
package world.bentobox.bentobox.panels;
import org.eclipse.jdt.annotation.NonNull;
import world.bentobox.bentobox.api.user.User;
/**
* @since 1.5.0
* @author Poslovitch
*/
public class CatalogPanel {
public static void openPanel(@NonNull User user) {
user.sendRawMessage("open the catalog (it's coming soon!)");
}
}