2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-02 02:53:29 +00:00
metaforce/hecl/driver/CToolAdd.hpp
2015-05-19 19:22:32 -10:00

31 lines
371 B
C++

#ifndef CTOOL_ADD
#define CTOOL_ADD
#include "CToolBase.hpp"
class CToolAdd final : public CToolBase
{
public:
CToolAdd(const SToolPassInfo& info)
: CToolBase(info)
{
}
~CToolAdd()
{
}
static void Help()
{
}
std::string toolName() const {return "add";}
int run()
{
return 0;
}
};
#endif // CTOOL_ADD