mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-15 00:59:07 +00:00
15 lines
288 B
C++
15 lines
288 B
C++
#ifndef _CTWEAKTARGETING
|
|
#define _CTWEAKTARGETING
|
|
|
|
#include "MetroidPrime/Tweaks/ITweakObject.hpp"
|
|
|
|
class CTweakTargeting : public ITweakObject, public TOneStatic<CTweakTargeting> {
|
|
public:
|
|
CTweakTargeting(CInputStream& in);
|
|
|
|
private:
|
|
uchar cls[0x224];
|
|
};
|
|
|
|
#endif // _CTWEAKTARGETING
|