mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-03 15:27:25 +00:00
Implement ZCG CPP workflow basis
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#include "CommandsFileReader.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
CommandsFileReader::CommandsFileReader(const ZoneCodeGeneratorArguments* args, std::string filename)
|
||||
: m_args(args),
|
||||
m_filename(std::move(filename))
|
||||
{
|
||||
}
|
||||
|
||||
bool CommandsFileReader::ReadCommandsFile(IDataRepository* repository)
|
||||
{
|
||||
std::cout << "Reading commands file: " << m_filename << std::endl;
|
||||
return true;
|
||||
}
|
Reference in New Issue
Block a user