the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 10 lines 134 B view raw
1#pragma once 2 3template<class T> class Reference 4{ 5private: 6 T *obj; 7public: 8 T *get() { return obj; } 9 Reference(T *i) { obj = i; } 10};