prime/include/MetroidPrime/Tweaks/ITweakObject.hpp
Henrique Gemignani Passos Lima 4a5fe82469 Match and link CTweakParticle
Former-commit-id: 3e06682f373eb93c3691f6759be82f89b17867e3
2022-10-14 13:01:20 +03:00

12 lines
152 B
C++

#ifndef _ITWEAKOBJECT
#define _ITWEAKOBJECT
#include "types.h"
class ITweakObject {
public:
virtual ~ITweakObject() {};
};
#endif // _ITWEAKOBJECT