mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
15 lines
401 B
C++
15 lines
401 B
C++
#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;
|
|
};
|