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