mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-03 13:21:22 +00:00
14 lines
194 B
C++
14 lines
194 B
C++
#ifndef _ITWEAKOBJECT
|
|
#define _ITWEAKOBJECT
|
|
|
|
#include "types.h"
|
|
|
|
class ITweakObject {
|
|
public:
|
|
virtual ~ITweakObject() = 0;
|
|
};
|
|
|
|
inline ITweakObject::~ITweakObject() {}
|
|
|
|
#endif // _ITWEAKOBJECT
|