AlttdGriefPrevention/src/main/java/me/ryanhamshire/GriefPrevention/PendingItemProtection.java
RoboMWM 40f554d386 reformat code
- Lots of tabs to spaces going on
- That's a lot of changes!

#63
2020-06-08 21:57:55 -07:00

23 lines
552 B
Java

package me.ryanhamshire.GriefPrevention;
import org.bukkit.Location;
import org.bukkit.inventory.ItemStack;
import java.util.UUID;
class PendingItemProtection
{
public Location location;
public UUID owner;
long expirationTimestamp;
ItemStack itemStack;
public PendingItemProtection(Location location, UUID owner, long expirationTimestamp, ItemStack itemStack)
{
this.location = location;
this.owner = owner;
this.expirationTimestamp = expirationTimestamp;
this.itemStack = itemStack;
}
}