Added the concept of a projectile.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user