You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
449 B
23 lines
449 B
package mightypork.rogue;
|
|
|
|
|
|
/**
|
|
* Application constants
|
|
*
|
|
* @author MightyPork
|
|
*/
|
|
public class Const {
|
|
|
|
// STRINGS
|
|
public static final int VERSION = 1;
|
|
|
|
public static final String APP_NAME = "Rogue";
|
|
public static final String TITLEBAR = APP_NAME + " v." + VERSION;
|
|
|
|
// AUDIO
|
|
public static final int FPS_RENDER = 100; // max
|
|
|
|
// INITIAL WINDOW SIZE
|
|
public static final int WINDOW_W = 800;
|
|
public static final int WINDOW_H = 600;
|
|
}
|
|
|