mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-12-25 17:37:34 +01:00
13 lines
227 B
Java
13 lines
227 B
Java
package com.Acrobot.ChestShop.Messaging;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class Message {
|
|
public static void sendMsg(Player player, String msg) {
|
|
player.sendMessage(msg);
|
|
}
|
|
}
|