donut-decomp/include/hel/common/PointerWrapper.hpp
2021-10-20 18:41:29 +02:00

10 lines
No EOL
166 B
C++

#pragma once
namespace hel {
namespace common {
template <class T> struct PointerWrapper {
T *ptr_;
PointerWrapper();
};
} // namespace common
} // namespace hel