Phillip Stephens 54e5a6f106 Add CControlMapper
Former-commit-id: 3ef22631707148f7ce414b39616544c7d29efe16
2022-10-22 13:57:30 -07:00

28 lines
465 B
C++

#ifndef _CTWEAKS
#define _CTWEAKS
#include "types.h"
#include "rstl/auto_ptr.hpp"
#include "rstl/reserved_vector.hpp"
class ITweakObject;
class CTweakPlayerControl;
class CTweaks {
public:
CTweaks();
~CTweaks();
void RegisterResourceTweaks();
void RegisterTweaks();
private:
rstl::reserved_vector< rstl::auto_ptr< ITweakObject >, 12 > x0_;
};
CHECK_SIZEOF(CTweaks, 0x64)
extern CTweakPlayerControl* gpTweakPlayerControlCurrent;
#endif // _CTWEAKS