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:
14
hecl/driver/CToolBase.hpp
Normal file
14
hecl/driver/CToolBase.hpp
Normal 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() {}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user