Files

14 lines
194 B
C++
Raw Permalink Normal View History

#ifndef _ITWEAKOBJECT
#define _ITWEAKOBJECT
2022-09-13 00:26:54 -04:00
#include "types.h"
class ITweakObject {
public:
2022-12-07 01:06:09 -05:00
virtual ~ITweakObject() = 0;
2022-09-13 00:26:54 -04:00
};
2022-12-07 01:06:09 -05:00
inline ITweakObject::~ITweakObject() {}
#endif // _ITWEAKOBJECT