mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-02 23:17:26 +00:00
16 lines
381 B
C++
16 lines
381 B
C++
#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;
|
|
}
|