mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-27 19:24:43 +02:00
20 lines
344 B
Java
20 lines
344 B
Java
package com.plotsquared.bukkit.events;
|
|
|
|
import org.bukkit.event.Event;
|
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
|
|
public abstract class PlotEvent extends Event {
|
|
|
|
private final Plot plot;
|
|
|
|
public PlotEvent(final Plot plot) {
|
|
this.plot = plot;
|
|
}
|
|
|
|
public final Plot getPlot() {
|
|
return this.plot;
|
|
}
|
|
|
|
}
|