Implement the usage of Scoreboards, make the language configurable.

Closes #15
This commit is contained in:
graywolf336
2014-03-13 12:59:47 -05:00
parent 6ce05dbe7d
commit ec1e91cda2
9 changed files with 178 additions and 0 deletions

View File

@ -90,6 +90,11 @@ public class Prisoner {
return TimeUnit.MINUTES.convert(time, TimeUnit.MILLISECONDS);
}
/** Gets the remaining time the prison has in minutes except only in int format. */
public int getRemainingTimeInMinutesInt() {
return (int) this.getRemainingTimeInMinutes();
}
/**
* Sets the remaining time the prisoner has left.
*