Files
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

12 lines
127 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 )
{
};
};