Feature: initial commit

This commit is contained in:
2018-01-04 12:16:14 +00:00
commit 9065ef6af5
27 changed files with 2243 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package fr.pavnay.rabbits.model.enums;
/**
*
* The hunt status
*
*/
public enum Status {
RUNNING,
HUNTER_WINS,
RABBITS_WIN;
@Override
public String toString() {
return name().charAt(0) + name().substring(1).toLowerCase().replace('_', ' ');
}
}