Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
328 B · 34 lines
C
at master
12345678910111213141516171819202122232425262728293031323334#pragma once
#include "Position.h"
class PositionImpl : public Position{protected: double x; double y; double z;
public: PositionImpl(double x, double y, double z) { this->x = x; this->y = y; this->z = z; }
double getX() { return x; }
double getY() { return y; }
double getZ() { return z; }};