Skip to content
Snippets Groups Projects

Resolve "As a user, I would like a town specific page which shows all trails for that town so that I can easily see my progress"

Compare and Show latest version
13 files
+ 233
113
Compare changes
  • Side-by-side
  • Inline
Files
13
 
package Team5.SmartTowns.dragonstale;
 
 
import Team5.SmartTowns.landmarks.Landmarks;
 
 
import java.util.List;
 
 
public class DragonsTale {
 
Landmarks landmarks = new Landmarks();
 
private int landmarkID = landmarks.getLandmarkID();
 
private String landmarkName = landmarks.getLandmarkName();
 
private String landmarkDescription = landmarks.getLandmarkDescription();
 
public static List<Landmarks> landmarksDragonstrail = List.of(
 
new Landmarks( 1, "A scent of...Dragon", "The Dragon has been spotted near by, find the QR code to continue" , "Start your discovery, at the sweet shop."),
 
new Landmarks( 2, "They've been found!", "Don't let them escape, find the next QR code to continue!", "Location test")
 
);
 
public static List<Landmarks> getLandmarksDragonstrail() {
 
return landmarksDragonstrail;
 
}
 
}
Loading