prime/include/MetroidPrime/Tweaks/ITweakObject.hpp
Luke Street 4a4e040adf Link CTweakPlayer
Former-commit-id: 84e8d8a9fa9c2f97211b5440616bf36624854b0a
2022-12-07 01:06:09 -05:00

14 lines
194 B
C++

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