mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-06 09:13:29 +00:00
17 lines
228 B
C++
17 lines
228 B
C++
#ifndef _CVPARAMTRANSFER
|
|
#define _CVPARAMTRANSFER
|
|
|
|
#include <rstl/rc_ptr.hpp>
|
|
|
|
class IObj;
|
|
|
|
class CVParamTransfer {
|
|
public:
|
|
static CVParamTransfer Null();
|
|
|
|
private:
|
|
rstl::rc_ptr< unkptr > x0_;
|
|
};
|
|
|
|
#endif // _CVPARAMTRANSFER
|