ChestShop-3/com/Acrobot/ChestShop/Messaging/Message.java
2011-05-29 13:25:25 +02:00

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);
}
}