mirror of https://github.com/PrimeDecomp/prime.git
16 lines
180 B
C++
16 lines
180 B
C++
|
#ifndef _CTWEAKS_HPP
|
||
|
#define _CTWEAKS_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class CTweaks {
|
||
|
public:
|
||
|
void RegisterResourceTweaks();
|
||
|
void RegisterTweaks();
|
||
|
|
||
|
private:
|
||
|
u32 x0_unk;
|
||
|
};
|
||
|
|
||
|
#endif
|