-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/me/clientastisch/cardinal/events/event/impl/server/others/NotifyFlagEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package me.clientastisch.cardinal.events.event.impl.server.others; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
import me.clientastisch.cardinal.checks.Checks; | ||
import me.clientastisch.cardinal.events.event.Event; | ||
import org.bukkit.entity.Player; | ||
|
||
/** | ||
* Will be called for each stuff that will receive a flag message | ||
* | ||
* @author Clientastisch | ||
* @since CAC v. 4.0.0 | ||
*/ | ||
public abstract class NotifyFlagEvent implements Event<NotifyFlagEvent> { | ||
|
||
public abstract Player getSuspect(); | ||
|
||
public abstract Checks getChecks(); | ||
|
||
} |