mirror of https://github.com/AxioDL/metaforce.git
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__
|