Skip to content
Snippets Groups Projects

Resolve "As a user, I want to see all trails across a town and seamlessly move between them."

3 files
+ 9
8
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -17,10 +17,12 @@ public class Trail {
String description;
int nLandmarks;
int difficulty; //1-5
String imgPath;
public Trail(int id, String name, String description) {
this.id = id;
this.name = name;
this.description = description;
imgPath = "images/trails/trail" + id + ".jpg";
}
}
Loading