You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
349 B

package cx.sfy.TheBridge.nms;
import org.bukkit.entity.Player;
import org.bukkit.generator.ChunkGenerator;
public interface NMS {
public ChunkGenerator getChunkGenerator();
public void sendTitle(Player player, int fadein, int stay, int fadeout, String title, String subtitle);
public void sendActionBar(Player player, String s);
}