the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 9 lines 125 B view raw
1#pragma once 2 3class Position 4{ 5public: 6 virtual double getX() = 0; 7 virtual double getY() = 0; 8 virtual double getZ() = 0; 9};