mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 17:47:16 +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) {};
|
|
}; |