Added painting events (thanks verrier and tanelsuurhans)

This commit is contained in:
Stephen
2011-04-11 23:06:34 -04:00
committed by Erik Broes
parent 51731221d0
commit a6c61782ac
8 changed files with 232 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
package org.bukkit.event.entity;
import org.bukkit.event.Listener;
import org.bukkit.event.painting.PaintingPlaceEvent;
import org.bukkit.event.painting.PaintingBreakEvent;
/**
* Handles all events fired in relation to entities
@@ -29,7 +31,13 @@ public class EntityListener implements Listener {
public void onEntityTarget(EntityTargetEvent event) {
}
public void onEntityInteract(EntityInteractEvent event) {
}
public void onPaintingPlace(PaintingPlaceEvent event){
}
public void onPaintingBreak(PaintingBreakEvent event){
}
}