-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release v1.1]merged subgroup3 && sloved movement
- Loading branch information
1 parent
443611a
commit e469e43
Showing
23 changed files
with
206 additions
and
234 deletions.
There are no files selected for viewing
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,8 +1,19 @@ | ||
package content; | ||
|
||
public class MapName { | ||
public static final String STARTER = "STARTER"; | ||
public static final String BEGINNER = "BEGINNER"; | ||
public static final String INTERMEDIATE = "INTERMEDIATE"; | ||
public static final String ADVANCED = "ADVANCED"; | ||
} | ||
public enum MapName { | ||
|
||
STARTER("STARTER"), | ||
BEGINNER("BEGINNER"), | ||
INTERMEDIATE("INTERMEDIATE"), | ||
ADVANCED("ADVANCED"); | ||
|
||
private final String mapName; | ||
|
||
private MapName(String mapName) { | ||
this.mapName = mapName; | ||
} | ||
|
||
public String getMapName() { | ||
return mapName; | ||
} | ||
} |
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,10 +1,21 @@ | ||
package content; | ||
|
||
public class RobotName { | ||
public static final String SQUASH_BOT = "SQUASH_BOT"; | ||
public static final String ZOOM_BOT = "ZOOM_BOT"; | ||
public static final String HAMMER_BOT = "HAMMER_BOT"; | ||
public static final String SPIN_BOT = "SPIN_BOT"; | ||
public static final String HULK_X90 = "HULK_X90"; | ||
public static final String TRUNDLE_BOT = "TRUNDLE_BOT"; | ||
public enum RobotName { | ||
|
||
SQUASH_BOT("SQUASH_BOT"), | ||
ZOOM_BOT("ZOOM_BOT"), | ||
HAMMER_BOT("HAMMER_BOT"), | ||
SPIN_BOT("SPIN_BOT"), | ||
HULK_X90("HULK_X90"), | ||
TRUNDLE_BOT("TRUNDLE_BOT"); | ||
|
||
private String name; | ||
|
||
private RobotName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
} |
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
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
Oops, something went wrong.