mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 10:36:08 +00:00
11 lines
145 B
C++
11 lines
145 B
C++
#pragma once
|
|
|
|
template <class T>
|
|
class Reference {
|
|
private:
|
|
T* obj;
|
|
|
|
public:
|
|
T* get() { return obj; }
|
|
Reference(T* i) { obj = i; }
|
|
}; |