/** * File name: QuestionsSettings.java * Version: 1.0 * Date: 26/3/2015 9:52:29 * Author: Itop1 * Copyright: Copyright 200X Itop1 * * 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.math; // TODO: Auto-generated Javadoc /** * The Class QuestionsSettings. * * @author Itop1 */ public class QuestionsSettings { /** The Constant OPERATION_SYMBOL_ADDITION. */ public final static String OPERATION_SYMBOL_ADDITION = "+"; /** The Constant OPERATION_SYMBOL_SUBTRACTION. */ public final static String OPERATION_SYMBOL_SUBTRACTION = "-"; /** The Constant OPERATION_SYMBOL_MULTIPLICATION. */ public final static String OPERATION_SYMBOL_MULTIPLICATION = "x"; /** The Constant NUM_ANSWER. */ public final static int NUM_ANSWER = 3; /** The Constant MAX_QUIZ_VALUE. */ public final static int MAX_QUIZ_VALUE = 49; /** The Constant MIN_QUIZ_VALUE. */ public final static int MIN_QUIZ_VALUE = 0; }