2
0
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:
Jan
2021-02-07 17:28:19 +01:00
parent c09c685369
commit 584492d1ef
20 changed files with 268 additions and 63 deletions

View File

@@ -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;
}