2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-26 19:41:43 +00:00

chore: small code adjustments for generation code in zcg

This commit is contained in:
Jan Laupetin
2025-04-28 09:36:56 +02:00
committed by Jan
parent d94a004433
commit 2eefad105e
4 changed files with 16 additions and 18 deletions
@@ -9,14 +9,14 @@
class CodeTemplateFile
{
public:
std::string m_file_name;
int m_tag;
CodeTemplateFile(std::string fileName, const int tag)
: m_file_name(std::move(fileName)),
m_tag(tag)
{
}
std::string m_file_name;
int m_tag;
};
class ICodeTemplate