/as_07/src/jp/ac/oit/is/android_shooting_07/Define.java

https://bitbucket.org/kmiyawaki/android_shooting · Java · 9 lines · 8 code · 1 blank · 0 comment · 0 complexity · 5a3f408098c6e7c6a6494a9fe791963d MD5 · raw file

  1. package jp.ac.oit.is.android_shooting_07;
  2. public class Define {
  3. public static final int VIRTUAL_DISPLAY_WIDTH = 480;
  4. public static final int VIRTUAL_DISPLAY_HEIGHT = 800;
  5. public static float DELAY_SEC = 1.0f / 30.0f;
  6. public static long DELAY_MSEC = (long) (DELAY_SEC * 1000);
  7. public static final float DEFAULT_CHARA_SPEED = 240.0f;
  8. }