Skip to content
Snippets Groups Projects
Commit 47a74907 authored by Matyáš Latner's avatar Matyáš Latner
Browse files

Fixed result sounds path

parent f8fbe5b6
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@ package cz.nic.tablexia.game.games.shooting_range;
* Created by lhoracek on 6/22/15.
*/
public class Properties {
public static final String BASE_DIR = "strelnice/";
public static final String SCORE_TOTAL = "score_total";
public static final String SCORE_HITS = "score_hits";
......@@ -39,6 +38,15 @@ public class Properties {
public static final int[] CUPS_MEDIUM = {20, 40, 70};
public static final int[] CUPS_HARD = {20, 35, 60};
static final String[] RESULT_SOUNDS = new String[]{"result0", "result1", "result2", "result3"};
static final String[] RESULT_TEXT = new String[]{"game_shootingrange_result_0", "game_shootingrange_result_1", "game_shootingrange_result_2", "game_shootingrange_result_3"};
public static final String MFX_PATH = "mfx/";
static final String[] RESULT_SOUNDS = new String[]{ MFX_PATH + "result0.mp3",
MFX_PATH + "result1.mp3",
MFX_PATH + "result2.mp3",
MFX_PATH + "result3.mp3"};
static final String[] RESULT_TEXT = new String[]{ "game_shootingrange_result_0",
"game_shootingrange_result_1",
"game_shootingrange_result_2",
"game_shootingrange_result_3"};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment