mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 11:42:28 +00:00
12 lines
138 B
C++
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 )
|
|
{
|
|
};
|
|
}; |