mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-07 07:53:28 +00:00
12 lines
152 B
C++
12 lines
152 B
C++
#ifndef _ITWEAKOBJECT
|
|
#define _ITWEAKOBJECT
|
|
|
|
#include "types.h"
|
|
|
|
class ITweakObject {
|
|
public:
|
|
virtual ~ITweakObject() {};
|
|
};
|
|
|
|
#endif // _ITWEAKOBJECT
|