prime/include/MetroidPrime/Tweaks/ITweakObject.hpp
Luke Street 329618c585 More main progress; tons of headers & stuff
Former-commit-id: a6e365791b35de8a1c056db8a4833150450c84d9
2022-09-13 00:28:02 -04:00

12 lines
144 B
C++

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