mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:07:42 +00:00
Initial round of particle runtime implementations
This commit is contained in:
@@ -15,7 +15,7 @@ public:
|
||||
|
||||
class CVParamTransfer
|
||||
{
|
||||
rstl::rc_ptr<IVParamObj> m_ref;
|
||||
std::shared_ptr<IVParamObj> m_ref;
|
||||
public:
|
||||
CVParamTransfer();
|
||||
CVParamTransfer(IVParamObj* obj) : m_ref(obj) {}
|
||||
@@ -34,6 +34,7 @@ protected:
|
||||
~TObjOwnerParam() {}
|
||||
public:
|
||||
TObjOwnerParam(T&& obj) : m_param(std::move(obj)) {}
|
||||
T& GetParam() {return m_param;}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user