mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-02 02:13:27 +00:00
19 lines
256 B
C++
19 lines
256 B
C++
#ifndef CTOOL_CLEAN
|
|
#define CTOOL_CLEAN
|
|
|
|
#include "CToolBase.hpp"
|
|
|
|
class CToolClean : public CToolBase
|
|
{
|
|
public:
|
|
CToolClean(const std::vector<std::string>& args)
|
|
: CToolBase(args)
|
|
{
|
|
}
|
|
~CToolClean()
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif // CTOOL_CLEAN
|