2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 21:47:59 +00:00

driver frontend in place

This commit is contained in:
Jack Andersen
2015-05-19 19:22:32 -10:00
parent 66d07af26e
commit 93a602be9a
17 changed files with 419 additions and 93 deletions

View File

@@ -3,16 +3,28 @@
#include "CToolBase.hpp"
class CToolCook : public CToolBase
class CToolCook final : public CToolBase
{
public:
CToolCook(const std::vector<std::string>& args)
: CToolBase(args)
CToolCook(const SToolPassInfo& info)
: CToolBase(info)
{
}
~CToolCook()
{
}
static void Help()
{
}
std::string toolName() const {return "cook";}
int run()
{
return 0;
}
};
#endif // CTOOL_COOK