1 package cz.cuni.amis.pogamut.ut2004.tournament.match.result;
2
3 /**
4 * Represents the result of the match (very limited). Just stating whether the match was fought by teams/individuals
5 * and the winner.
6 *
7 * @author Jimmy
8 */
9 public abstract class UT2004MatchResult {
10
11 private boolean individual;
12
13 public UT2004MatchResult(boolean individual) {
14 this.individual = individual;
15 }
16
17 public boolean isIndividual() {
18 return individual;
19 }
20
21 }