mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 21:47:59 +00:00
integrated zlib and libpng; initial driver work
This commit is contained in:
19
hecl/driver/CToolPackage.hpp
Normal file
19
hecl/driver/CToolPackage.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef MAIN_CPP
|
||||
#error This file may only be included from main.cpp
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include "CToolBase.hpp"
|
||||
|
||||
class CToolPackage : public CToolBase
|
||||
{
|
||||
public:
|
||||
CToolPackage(const std::vector<std::string>& args)
|
||||
: CToolBase(args)
|
||||
{
|
||||
}
|
||||
~CToolPackage()
|
||||
{
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user