package com.zozotintin.dodgydot; interface Configuration { public static final float SCREEN_WIDTH = 10.8f; public static final float SCREEN_HEIGHT = 17.28f; public static final float VIRTUAL_WIDTH = 1080; public static final float VIRTUAL_HEIGHT = 1728; public static final float GRAVITY = 50.0f; public static final float BALL_WIDTH = 0.75f; public static final float BALL_JUMP_Y = 15.0f; public static final float BALL_JUMP_X = 9.0f; public static final float SQUARE_WIDTH = 1.5f; public static final float SQUARE_MAX_SPEED = 10.0f; public static final float SQUARE_MIN_SPEED = 5.0f; //public static final float SQUARE_INTERVAL = 1.0f; public static final float SQUARE_FALL_INTERVAL= 0.75f; public static final float RETRY_X = SCREEN_WIDTH / 2; public static final float RETRY_Y = 5.0f; public static final float RETRY_WIDTH = 3.5f; public static final float FADE_INTERVAL = 0.25f; }