Start work on #3, confirming before deleting something major.

This commit is contained in:
graywolf336
2014-02-13 13:02:44 -06:00
parent 2036a311ac
commit f6686fee8d
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package com.graywolf336.jail.enums;
public enum Confirmation {
/** When they are clearing a jail from all their prisoner's with releasing properly. */
CLEAR,
/** When they are clearing a jail from all their prisoner's by force. */
CLEARFORCE,
/** When they are deleting a cell from a jail. */
DELETECELL,
/** When they are deleting all a jail's cells. */
DELETECELLS,
/** When they are deleting a jail. */
DELETE;
}