Luke Street 329618c585 More main progress; tons of headers & stuff
Former-commit-id: a6e365791b35de8a1c056db8a4833150450c84d9
2022-09-13 00:28:02 -04:00

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