|
package ch.zhaw.catan;
|
|
|
|
import ch.zhaw.catan.Config.Land;
|
|
import ch.zhaw.hexboard.HexBoardTextView;
|
|
|
|
//TODO Java Docs
|
|
public class SiedlerBoardTextView extends HexBoardTextView<Land, Settlement, Road, String> {
|
|
|
|
public SiedlerBoardTextView(SiedlerBoard board) {
|
|
super(board);
|
|
}
|
|
|
|
}
|