mirror of
https://github.com/Klagarge/PokeHES.git
synced 2025-04-12 10:56:04 +00:00
14 lines
456 B
Java
14 lines
456 B
Java
package Main;
|
|
|
|
public class Settings {
|
|
|
|
public static final boolean ANDROID = false;
|
|
public static final int PLAYERS = 1;
|
|
public static final int TIME = 10; // number of minutes for kill all enemy
|
|
public static final int RECOVERED = 30; // number of seconds an enemy need for recovered
|
|
public static final int SWITCHMAPTIME = 250; // Number of milliseconds the player wait for switch map
|
|
|
|
public static final int SIDE = 800;
|
|
|
|
}
|