LeviLamina
Loading...
Searching...
No Matches
StackRefResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4#include "mc/deps/game_refs/GameRefs.h"
5
6template <typename T>
7class StackRefResult : public GameRefs<T>::StackResultStorage {
8public:
9 using Base = GameRefs<T>::StackResultStorage;
10 using Base::Base;
11
12 constexpr StackRefResult(Base const& ptr) : Base(ptr) {}
13 constexpr StackRefResult(Base&& ptr) : Base(std::move(ptr)) {}
14};
Definition StackRefResult.h:7
Definition GameRefs.h:6