metaforce/hecl/driver/CToolCook.hpp

31 lines
378 B
C++
Raw Normal View History

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