All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.shynixn.blockball.api.events.BallHitWallEvent Maven / Gradle / Ivy

package com.github.shynixn.blockball.api.events;

import com.github.shynixn.blockball.api.entities.Ball;
import com.github.shynixn.blockball.lib.SEvent;
import org.bukkit.block.Block;

public class BallHitWallEvent extends SEvent {
    private final Ball ball;
    private final Block block;

    public BallHitWallEvent(Ball ball, Block block) {
        super();
        this.ball = ball;
        this.block = block;
    }

    public Block getBlock() {
        return this.block;
    }

    public Ball getBall() {
        return this.ball;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy