mirror of
https://github.com/tetreum/brickcraft.git
synced 2026-02-18 08:08:40 -06:00
21 lines
310 B
C#
21 lines
310 B
C#
// Highly based on https://github.com/chraft/chunk-light-tester
|
|
namespace Brickcraft.World
|
|
{
|
|
public class BlockEntry
|
|
{
|
|
public int X;
|
|
public int Y;
|
|
public int Z;
|
|
|
|
public Chunk Chunk;
|
|
|
|
public BlockEntry(int x, int y, int z, Chunk chunk)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Z = z;
|
|
Chunk = chunk;
|
|
}
|
|
}
|
|
}
|