metaforce/hecl/driver/CToolInit.hpp

31 lines
378 B
C++
Raw Normal View History

2015-05-19 21:01:32 +00:00
#ifndef CTOOL_INIT
#define CTOOL_INIT
#include "CToolBase.hpp"
2015-05-20 05:22:32 +00:00
class CToolInit final : public CToolBase
{
public:
2015-05-20 05:22:32 +00:00
CToolInit(const SToolPassInfo& info)
: CToolBase(info)
{
}
2015-05-20 05:22:32 +00:00
~CToolInit()
{
}
2015-05-20 05:22:32 +00:00
static void Help()
{
}
std::string toolName() const {return "init";}
int run()
{
return 0;
}
};
2015-05-19 21:01:32 +00:00
#endif // CTOOL_INIT