/**
* File name: MAConstants.java
* Version: 1.0
* Date: 31/03/2015 23:14:30
* Author: Sawan J. Kapai Harpalani
* Copyright: Copyright 200X Sawan J. Kapai Harpalani
*
* This file is part of Math Attack.
*
* Math Attack is free software: you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* Math Attack is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General
* Public License along with Math Attack. If not, see
* http://www.gnu.org/licenses/.
*/
package com.sawan.mathattack.constants;
// TODO: Auto-generated Javadoc
/**
* The Class MAConstants.
*
* @author Sawan J. Kapai Harpalani
*/
public class MAConstants {
/** The Constant ADDITION_FILE. */
public final static String ADDITION_FILE = "add.data";
/** The Constant SUBTRACTION_FILE. */
public final static String SUBTRACTION_FILE = "sub.data";
/** The Constant MULTIPLICATION_FILE. */
public final static String MULTIPLICATION_FILE = "mult.data";
/** The Constant UNDEFINED. */
public final static int UNDEFINED = -999;
/** The Constant CHAPTER_WIDTH. */
public final static float CHAPTER_WIDTH = 300f;
/** The Constant CHAPTER_HEIGHT. */
public final static float CHAPTER_HEIGHT = 279f;
/** The Constant SMALL_BUTTON_WIDTH. */
public final static float SMALL_BUTTON_WIDTH = 63f;
/** The Constant SMALL_BUTTON_HEIGHT. */
public final static float SMALL_BUTTON_HEIGHT = 66f;
/** The Constant CREDITS_WIDTH. */
public final static float CREDITS_WIDTH = 782f;
/** The Constant CREDITS_HEIGHT. */
public final static float CREDITS_HEIGHT = 502f;
/** The Constant LEVEL_TABLE_WIDTH. */
public final static float LEVEL_TABLE_WIDTH = 489;
/** The Constant LEVEL_TABLE_HEIGHT. */
public final static float LEVEL_TABLE_HEIGHT = 429;
/** The Constant NUMBER_LEVELS. */
public final static int NUMBER_LEVELS = 8;
/** The Constant CHAPTER_ADDITION. */
public final static int CHAPTER_ADDITION = 1;
/** The Constant CHAPTER_SUBTRACTION. */
public final static int CHAPTER_SUBTRACTION = 2;
/** The Constant CHAPTER_MULTIPLICATION. */
public final static int CHAPTER_MULTIPLICATION = 3;
}