mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 23:11:20 +00:00
9 lines
100 B
C++
9 lines
100 B
C++
#pragma once
|
|
|
|
namespace urde {
|
|
class ITweak {
|
|
public:
|
|
virtual ~ITweak() {}
|
|
};
|
|
} // namespace urde
|