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.
134 B · 10 lines
C
at master
12345678910#pragma once
template<class T> class Reference{private: T *obj;public: T *get() { return obj; } Reference(T *i) { obj = i; }};