package org.goldfish.minesweeper_android_01;
/**
 * 定义了一些常量
 *
 *
 * drawables: 扫雷个数字图标的索引
 *
 * LOCATION_PERMISSION_REQUEST_CODE: 位置权限请求码
 */
public interface Resources {
    Integer[] drawables = {null, R.drawable.m1, R.drawable.m2,
            R.drawable.m3, R.drawable.m4,
            R.drawable.m5, R.drawable.m6,
            R.drawable.m7, R.drawable.m8};
    int LOCATION_PERMISSION_REQUEST_CODE = 99;
}

