Blame |
Last modification |
View Log
| RSS feed
package com.gebauz.burutaru;
import com.gebauz.bauzoid.math.Vector4;
public class GameConsts
{
// General constants
public static final String LOG_TAG =
"GEBAUZ";
public static final float VIRTUAL_SCREEN_WIDTH = 800.0f
;
public static final float VIRTUAL_SCREEN_HEIGHT = 480.0f
;
public static final Vector4 WHITE_COLOR =
new Vector4
(1,
1,
1,
1);
public static String PREFERENCES =
"com.gebauz.burutaru";
}