2
0
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:
Jack Andersen
2015-05-18 21:01:18 -10:00
parent 30ac6e7d8c
commit d10c3a831d
47 changed files with 45522 additions and 137 deletions

View 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()
{
}
};