1
0

Move constant

This commit is contained in:
Victor 2014-03-15 10:20:46 +02:00
parent 116c8a6b8d
commit 6bf7ee809b
2 changed files with 3 additions and 1 deletions

View File

@ -15,4 +15,7 @@ public interface Constants {
// Parameters
public static final boolean DEBUG_MODE = true;
// Game
public static final int PLAYERS_BLOCK_COUNT = 24;
}

View File

@ -11,7 +11,6 @@ import java.util.Random;
public class Terrain implements Constants {
private static final Color TERRAIN_COLOR = new Color(0xFF269920);
private static final int PLAYERS_BLOCK_COUNT = 24;
private static final int SMOOTH_ITERATIONS = 10;
private final int blocksCount;