2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 21:37:03 +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/CToolInit.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 CToolInit : public CToolBase
{
public:
CToolInit(const std::vector<std::string>& args)
: CToolBase(args)
{
}
~CToolInit()
{
}
};