2
0
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:
Jack Andersen
2016-02-04 15:27:03 -10:00
parent cf2464a02b
commit 7a35dac972
46 changed files with 885 additions and 146 deletions

View File

@@ -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;}
};
}