Advertisement
Notifyz

CombatLogEntry

Jun 22nd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package notifyz.hardcorefactions.combatlog;
  2.  
  3. import org.bukkit.scheduler.BukkitTask;
  4.  
  5. public class CombatLogEntry {
  6. public final LoggerEntity loggerEntity;
  7. public final BukkitTask task;
  8.  
  9. public CombatLogEntry(LoggerEntity loggerEntity, BukkitTask task) {
  10. this.loggerEntity = loggerEntity;
  11. this.task = task;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement