mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-08 13:33:11 +00:00
18 lines
352 B
Java
18 lines
352 B
Java
![]() |
package com.intellectualcrafters.plot;
|
||
|
|
||
|
public class BlockWrapper {
|
||
|
public int x;
|
||
|
public int y;
|
||
|
public int z;
|
||
|
public int id;
|
||
|
public byte data;
|
||
|
|
||
|
public BlockWrapper(int x, int y, int z, short id, byte data) {
|
||
|
this.x = x;
|
||
|
this.y = y;
|
||
|
this.z = z;
|
||
|
this.id = id;
|
||
|
this.data = data;
|
||
|
}
|
||
|
}
|