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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user