First commit, converted to a truely maven project and switching over to my own repository for better management.

This commit is contained in:
graywolf336
2013-12-05 18:22:15 -06:00
commit 596c9de2ad
40 changed files with 3173 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package com.graywolf336.jail.events;
/**
* Event thrown when a player is fixing to be jailed, both offline and online players.
*
* This event is called right before we actually jail a player, and is cancellable, whether the player is offline or online, getPlayer() will always return null if isOnline() return false.
*
* @author graywolf336
* @since 3.0.0
* @version 0.0.0
*/
public class PrisonerJailedEvent {
}

View File

@ -0,0 +1,14 @@
package com.graywolf336.jail.events;
/**
* Event thrown when a player is being released from jail, both offline and online players.
*
* This event is called whenever a player is being released from jail whether the player is offline or online, getPlayer() will always return null if isOnline() return false.
*
* @author graywolf336
* @since 3.0.0
* @version 0.0.0
*/
public class PrisonerReleasedEvent {
}