2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-20 15:31:34 +00:00
metaforce/hecl/driver/CToolRemove.hpp
2015-05-19 19:22:32 -10:00

31 lines
392 B
C++

#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