Added the concept of a projectile.

This commit is contained in:
sunkid
2011-06-18 08:09:41 -07:00
committed by EvilSeph
parent fb79a3106e
commit 7cab3de477
11 changed files with 83 additions and 16 deletions

View File

@@ -0,0 +1,11 @@
package org.bukkit.event.entity;
import org.bukkit.entity.Projectile;
public class ProjectileHitEvent extends EntityEvent {
public ProjectileHitEvent(Projectile projectile) {
super(Type.PROJECTILE_HIT, projectile);
}
}