Skip to content

Package: IC4Solution

IC4Solution

Coverage

1: package de.fhdw.gaming.ipspiel23.c4.domain;
2:
3: /**
4: * A solution of the connect four game.
5: */
6: public interface IC4Solution extends IC4SolutionSlim {
7:
8: /**
9: * The fields that are contained in this solution.
10: */
11: IC4Field[] getContainingFields();
12: }