2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 17:47:42 +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

14
hecl/driver/CToolBase.hpp Normal file
View File

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