2022-04-10 00:17:06 +00:00
|
|
|
#ifndef _CTWEAKS_HPP
|
|
|
|
#define _CTWEAKS_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2022-09-13 04:26:54 +00:00
|
|
|
#include "rstl/auto_ptr.hpp"
|
|
|
|
#include "rstl/reserved_vector.hpp"
|
|
|
|
|
|
|
|
class ITweakObject;
|
|
|
|
|
2022-04-10 00:17:06 +00:00
|
|
|
class CTweaks {
|
|
|
|
public:
|
2022-09-13 04:26:54 +00:00
|
|
|
CTweaks();
|
|
|
|
~CTweaks();
|
|
|
|
|
2022-04-10 00:17:06 +00:00
|
|
|
void RegisterResourceTweaks();
|
|
|
|
void RegisterTweaks();
|
|
|
|
|
|
|
|
private:
|
2022-09-13 04:26:54 +00:00
|
|
|
rstl::reserved_vector< rstl::auto_ptr< ITweakObject >, 12 > x0_;
|
2022-04-10 00:17:06 +00:00
|
|
|
};
|
2022-09-13 04:26:54 +00:00
|
|
|
CHECK_SIZEOF(CTweaks, 0x64)
|
2022-04-10 00:17:06 +00:00
|
|
|
|
|
|
|
#endif
|