2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 02:27:43 +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

17
hecl/driver/CToolHelp.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef MAIN_CPP
#error This file may only be included from main.cpp
#endif
#include "CToolBase.hpp"
class CToolHelp : public CToolBase
{
public:
CToolHelp(const std::vector<std::string>& args)
: CToolBase(args)
{
}
~CToolHelp()
{
}
};