Coverage Summary for Class: Constants (com.mozarellabytes.kroy.Utilities)
Class | Class, % | Method, % | Line, % |
---|---|---|---|
Constants | 0% (0/ 1) | 0% (0/ 1) | 0% (0/ 1) |
1 package com.mozarellabytes.kroy.Utilities;
2
3 public final class Constants {
4
5
6 public static final int GAME_WIDTH = 1024;
7 public static final int GAME_HEIGHT = 720;
8
9 public static final int VIEWPORT_WIDTH = 40;
10 public static final int VIEWPORT_HEIGHT = 24;
11
12 public static final float TILE_WxH = 48f; //Tile width and height in pixels
13
14 private Constants() {
15 }
16 }