mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-15 15:05:52 +00:00
16 lines
248 B
C++
16 lines
248 B
C++
#ifndef __CVPARAMTRANSFER_HPP__
|
|
#define __CVPARAMTRANSFER_HPP__
|
|
|
|
#include <rstl/rc_ptr.hpp>
|
|
|
|
class IObj;
|
|
class CVParamTransfer {
|
|
public:
|
|
static CVParamTransfer Null();
|
|
|
|
private:
|
|
rstl::rc_ptr< unkptr > x0_;
|
|
};
|
|
|
|
#endif // __CVPARAMTRANSFER_HPP__
|