• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2010 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.replica.replicaisland;
18 
19 public class PreferenceConstants {
20 	public static final String PREFERENCE_LEVEL_ROW = "levelRow";
21     public static final String PREFERENCE_LEVEL_INDEX = "levelIndex";
22     public static final String PREFERENCE_LEVEL_COMPLETED = "levelsCompleted";
23     public static final String PREFERENCE_SOUND_ENABLED = "enableSound";
24     public static final String PREFERENCE_SAFE_MODE = "safeMode";
25     public static final String PREFERENCE_SESSION_ID = "session";
26     public static final String PREFERENCE_LAST_VERSION = "lastVersion";
27     public static final String PREFERENCE_STATS_ENABLED = "enableStats";
28     public static final String PREFERENCE_CLICK_ATTACK = "enableClickAttack";
29     public static final String PREFERENCE_TILT_CONTROLS = "enableTiltControls";
30     public static final String PREFERENCE_TILT_SENSITIVITY = "tiltSensitivity";
31     public static final String PREFERENCE_MOVEMENT_SENSITIVITY = "movementSensitivity";
32     public static final String PREFERENCE_SCREEN_CONTROLS = "enableScreenControls";
33     public static final String PREFERENCE_ENABLE_DEBUG = "enableDebug";
34     public static final String PREFERENCE_TOTAL_GAME_TIME = "totalGameTime";
35     public static final String PREFERENCE_LAST_ENDING = "lastEnding";
36 	public static final String PREFERENCE_ROBOTS_DESTROYED = "robotsDestroyed";
37 	public static final String PREFERENCE_PEARLS_COLLECTED = "pearlsCollected";
38 	public static final String PREFERENCE_PEARLS_TOTAL = "pearlsTotal";
39 	public static final String PREFERENCE_LINEAR_MODE = "linearMode";
40 	public static final String PREFERENCE_EXTRAS_UNLOCKED = "extrasUnlocked";
41 	public static final String PREFERENCE_DIFFICULTY = "difficulty";
42 
43     public static final String PREFERENCE_LEFT_KEY = "keyLeft";
44     public static final String PREFERENCE_RIGHT_KEY = "keyRight";
45     public static final String PREFERENCE_ATTACK_KEY = "keyAttack";
46     public static final String PREFERENCE_JUMP_KEY = "keyJump";
47 
48     public static final String PREFERENCE_NAME = "ReplicaIslandPrefs";
49 
50 
51 
52 
53 }
54