1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-03 03:51:45 +02:00
GiantsTools/Sdk/Include/GameObject/Public/Components/ObjectRef.h
2021-01-23 15:40:09 -08:00

17 lines
310 B
C++

#pragma once
class Object;
namespace GameObj
{
// Interface back to legacy Object pointer from ECS land.
struct ObjectRef
{
ObjectRef(Object* object) : Object(object) { }
[[nodiscard]] Object* GetObj() const { return this->Object; }
private:
Object* Object;
};
}