mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 09:07:43 +00:00
driver frontend in place
This commit is contained in:
@@ -3,16 +3,28 @@
|
||||
|
||||
#include "CToolBase.hpp"
|
||||
|
||||
class CToolAdd : public CToolBase
|
||||
class CToolAdd final : public CToolBase
|
||||
{
|
||||
public:
|
||||
CToolAdd(const std::vector<std::string>& args)
|
||||
: CToolBase(argc, argv)
|
||||
CToolAdd(const SToolPassInfo& info)
|
||||
: CToolBase(info)
|
||||
{
|
||||
}
|
||||
|
||||
~CToolAdd()
|
||||
{
|
||||
}
|
||||
|
||||
static void Help()
|
||||
{
|
||||
}
|
||||
|
||||
std::string toolName() const {return "add";}
|
||||
|
||||
int run()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // CTOOL_ADD
|
||||
|
||||
Reference in New Issue
Block a user