2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-29 07:41:53 +00:00

feat: add asset marking

This commit is contained in:
Jan
2024-01-22 00:04:55 +01:00
parent 6083a91ab5
commit 9d7c0d3452
11 changed files with 1029 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#pragma once
#include "Generating/ICodeTemplate.h"
class ZoneMarkTemplate final : public ICodeTemplate
{
static constexpr int TAG_HEADER = 1;
static constexpr int TAG_SOURCE = 2;
class Internal;
public:
std::vector<CodeTemplateFile> GetFilesToRender(RenderingContext* context) override;
void RenderFile(std::ostream& stream, int fileTag, RenderingContext* context) override;
};