Added a class for the marker, and added documentation

- Added documentation for the Race class
- Added a class for the Marker instead of just storing the name of the marker in a string

Tags: #docs #implement #story[4]
This commit is contained in:
Michael Rausch
2017-03-06 19:31:25 +13:00
parent 8c0cc67ae3
commit 9b1d90d2bf
4 changed files with 124 additions and 20 deletions
+17
View File
@@ -0,0 +1,17 @@
package seng302;
class Marker{
private String name;
public Marker(String name){
this.name = name;
}
public void setName(String name){
this.name = name;
}
public String getName(){
return this.name;
}
}