package mahjong.tools; /** * Created by joe on 12/6/14. */ public class Alert { public static void Error(boolean bool,String str) { if (bool) { System.out.println(str); System.exit(1); } } public static void Info(boolean bool,String str) { if (bool) System.out.println(str); } }