Archived
0
This repository has been archived on 2024-08-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Modules/src/com/redstoner/modules/tilechunks/LaggyTileChunk.java
2018-06-30 14:30:07 +02:00

22 lines
432 B
Java

package com.redstoner.modules.tilechunks;
import org.bukkit.Location;
import org.bukkit.World;
public class LaggyTileChunk {
public final int x, y, z, amount;
public final World world;
public LaggyTileChunk(int x, int y, int z, World world, int amount) {
this.x = x;
this.y = y;
this.z = z;
this.world = world;
this.amount = amount;
}
public Location getLocation() {
return new Location(world, x, y, z);
}
}