mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:11:22 +00:00
14 lines
158 B
C++
14 lines
158 B
C++
#ifndef __URDE_ITWEAK_HPP__
|
|
#define __URDE_ITWEAK_HPP__
|
|
|
|
namespace urde
|
|
{
|
|
class ITweak
|
|
{
|
|
public:
|
|
virtual ~ITweak() {}
|
|
};
|
|
}
|
|
|
|
#endif // __URDE_ITWEAK_HPP__
|