mirror of https://github.com/PrimeDecomp/prime.git
25 lines
376 B
C++
25 lines
376 B
C++
#ifndef _CTWEAKS_HPP
|
|
#define _CTWEAKS_HPP
|
|
|
|
#include "types.h"
|
|
|
|
#include "rstl/auto_ptr.hpp"
|
|
#include "rstl/reserved_vector.hpp"
|
|
|
|
class ITweakObject;
|
|
|
|
class CTweaks {
|
|
public:
|
|
CTweaks();
|
|
~CTweaks();
|
|
|
|
void RegisterResourceTweaks();
|
|
void RegisterTweaks();
|
|
|
|
private:
|
|
rstl::reserved_vector< rstl::auto_ptr< ITweakObject >, 12 > x0_;
|
|
};
|
|
CHECK_SIZEOF(CTweaks, 0x64)
|
|
|
|
#endif
|