forked from Atomix77/ENG1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cb33fb
commit f35336e
Showing
8 changed files
with
13 additions
and
21 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
game/core/src/com/eng1/game/assets/images/ImageAssetPaths.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.eng1.game.assets.images; | ||
|
||
public final class ImageAssetPaths { | ||
protected static final String MAIN_MENU_TITLE_PATH = "images/main_menu_title.png"; | ||
protected static final String NEW_WORLD_MAP_OVERVIEW_PATH = "maps/newWorldMap/newWorldMap.png"; | ||
protected static final String PLAYER_CHARACTER_1_PATH = "playerCharacters/playerCharacter1.png"; | ||
protected static final String PLAYER_CHARACTER_2_PATH = "playerCharacters/playerCharacter2.png"; | ||
protected static final String PLAYER_CHARACTER_3_PATH = "playerCharacters/playerCharacter3.png"; | ||
static final String MAIN_MENU_TITLE_PATH = "images/main_menu_title.png"; | ||
static final String NEW_WORLD_MAP_OVERVIEW_PATH = "maps/newWorldMap/newWorldMap.png"; | ||
static final String PLAYER_CHARACTER_1_PATH = "playerCharacters/playerCharacter1.png"; | ||
static final String PLAYER_CHARACTER_2_PATH = "playerCharacters/playerCharacter2.png"; | ||
static final String PLAYER_CHARACTER_3_PATH = "playerCharacters/playerCharacter3.png"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
package com.eng1.game.assets.maps; | ||
|
||
import lombok.experimental.UtilityClass; | ||
|
||
@UtilityClass | ||
public final class MapAssetPaths { | ||
protected static final String HOME_MAP_PATH = "maps/map8 (home)/home.tmx"; | ||
protected static final String GYM_MAP_PATH = "maps/map9 (gym)/gym.tmx"; | ||
protected static final String CS_BUILDING_MAP_PATH = "maps/map10 (cs-building)/computer-science-building.tmx"; | ||
protected static final String PIAZZA_MAP_PATH = "maps/map11 (piazza)/piazza.tmx"; | ||
protected static final String NEW_WORLD_MAP_PATH = "maps/newWorldMap/newWorldMap.tmx"; | ||
static final String HOME_MAP_PATH = "maps/map8 (home)/home.tmx"; | ||
static final String GYM_MAP_PATH = "maps/map9 (gym)/gym.tmx"; | ||
static final String CS_BUILDING_MAP_PATH = "maps/map10 (cs-building)/computer-science-building.tmx"; | ||
static final String PIAZZA_MAP_PATH = "maps/map11 (piazza)/piazza.tmx"; | ||
static final String NEW_WORLD_MAP_PATH = "maps/newWorldMap/newWorldMap.tmx"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters