mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 03:47:42 +00:00
driver frontend in place
This commit is contained in:
30
hecl/driver/CToolRemove.hpp
Normal file
30
hecl/driver/CToolRemove.hpp
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef CTOOL_REMOVE
|
||||
#define CTOOL_REMOVE
|
||||
|
||||
#include "CToolBase.hpp"
|
||||
|
||||
class CToolRemove final : public CToolBase
|
||||
{
|
||||
public:
|
||||
CToolRemove(const SToolPassInfo& info)
|
||||
: CToolBase(info)
|
||||
{
|
||||
}
|
||||
|
||||
~CToolRemove()
|
||||
{
|
||||
}
|
||||
|
||||
static void Help()
|
||||
{
|
||||
}
|
||||
|
||||
std::string toolName() const {return "remove";}
|
||||
|
||||
int run()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // CTOOL_REMOVE
|
||||
Reference in New Issue
Block a user