summaryrefslogtreecommitdiff
path: root/tools/Alert.java
blob: 55d7838b861eab748bb5298bc59c616a067cb16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
    }
}