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

com.github.shynixn.petblocks.api.events.PetBlockRideEvent Maven / Gradle / Ivy

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

import com.github.shynixn.petblocks.api.entities.PetBlock;

/**
 * Created by Shynixn
 */
public class PetBlockRideEvent extends PetBlockCancelAbleEvent {
    private boolean isRiding;

    public PetBlockRideEvent(PetBlock petBlock, boolean isRiding) {
        super(petBlock);
        this.isRiding = isRiding;
    }

    public boolean isRiding() {
        return this.isRiding;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy