mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-04 15:15:11 +00:00
9 lines
124 B
C++
9 lines
124 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) {};
|
|
}; |