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