Files
LCERenewed/Minecraft.World/Coord.h
T
2026-03-08 10:09:54 +01:00

12 lines
138 B
C++

#pragma once
class Coord
{
public:
const int x, y, z;
public:
Coord(int x, int y, int z) : x( x ), y( y ), z( z )
{
};
};