mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 13:58:31 -05:00
16 lines
272 B
C++
16 lines
272 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
class ZoneCodeGenerator
|
|
{
|
|
protected:
|
|
ZoneCodeGenerator() = default;
|
|
|
|
public:
|
|
virtual ~ZoneCodeGenerator() = default;
|
|
virtual int Run(int argc, const char** argv) = 0;
|
|
|
|
static std::unique_ptr<ZoneCodeGenerator> Create();
|
|
};
|