Back to project page numbers-game.
The source code is released under:
GNU General Public License
If you think the Android project numbers-game listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ngame.factories; /*ww w . ja v a2 s.c om*/ import com.ngame.models.Level; import com.ngame.utils.EndOfLevelException; public abstract class LevelFactory { public static final String WINNER_SALUTE = "You have reached the end of the game... Congratulations!"; public static final String SOLVED_LEVEL_SALUTE = "Level Solved!!! Congratulations on solving the level using minimum number of transformations"; public static final String NO_MORE_LEVES_SALUTE = "You have reached level mastery... Try your skills at \"Time Battle\" mode !"; public abstract Level getLevel(int i) throws EndOfLevelException; }