added GameoverCause.java -- enum to indicate cause of Game's ending

This commit is contained in:
Kjistóf 2016-05-07 13:36:38 +02:00
parent 446b2b57f3
commit e4e7367a82
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package cicaprojekt;
public enum GameoverCause {
TIMEOUT, ONEILLWON, JAFFAWON;
}