Files
Party-Parrots-At-Sea/src/main/java/seng302/Marker.java
T
Michael Rausch 9b1d90d2bf 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]
2017-03-06 19:31:25 +13:00

17 lines
217 B
Java

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;
}
}