mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
fix s3, fix health + backpack bug on 1.11, change replciation, fix 7.20 & 12.61, fix backpack on >S9, probably some other stuff i forgot
16 lines
311 B
C++
16 lines
311 B
C++
#pragma once
|
|
|
|
#include "WeakObjectPtr.h"
|
|
#include "Object.h"
|
|
|
|
template<class T = UObject, class TWeakObjectPtrBase = FWeakObjectPtr>
|
|
struct TWeakObjectPtr;
|
|
|
|
template<class T, class TWeakObjectPtrBase>
|
|
struct TWeakObjectPtr : public TWeakObjectPtrBase
|
|
{
|
|
T* Get()
|
|
{
|
|
return (T*)TWeakObjectPtrBase::Get();
|
|
}
|
|
}; |