10 lines
144 B
C++
10 lines
144 B
C++
namespace Components
|
|
{
|
|
class QuickPatch : public Component
|
|
{
|
|
public:
|
|
QuickPatch();
|
|
const char* GetName() { return "QuickPatch"; };
|
|
};
|
|
}
|