This repository has been archived on 2022-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
EEEEEEEEEEEEEEEAAAAAAAAAA-A.../core/src/com/game/Misc/Vars.java

17 lines
443 B
Java

package com.game.Misc;
/**
* Created by Ash on 08/02/2016.
*/
public class Vars {
// Application related
public static final String TITLE = "Group Project";
public static final int SCREEN_WIDTH = 1280;
public static final int SCREEN_HEIGHT = 720;
public static final boolean RESIZABLE = false;
public static final float FRAMERATE = 60f;
// Physics related
public static final float STEP = 1 / FRAMERATE;
}