Subversion Repositories AndroidProjects

Rev

Rev 387 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.gebauz.PonPonChun.game;

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 = 480.0f;
        public static final float VIRTUAL_SCREEN_HEIGHT = 800.0f;
       
        public static final Vector4 WHITE_COLOR = new Vector4(1, 1, 1, 1);

}