From 8b3ade73997e9f87f1232b9dc9af35969e6f50dd Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 19 Jan 2026 13:35:25 +0100 Subject: Rewriting parts to handle different ghost layers --- lib/core/c++/chunk.hpp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 lib/core/c++/chunk.hpp (limited to 'lib/core/c++/chunk.hpp') diff --git a/lib/core/c++/chunk.hpp b/lib/core/c++/chunk.hpp new file mode 100644 index 0000000..bfef358 --- /dev/null +++ b/lib/core/c++/chunk.hpp @@ -0,0 +1,38 @@ +#pragma once + +#include "common.hpp" + +namespace kel { +namespace lbm { +namespace sch { +namespace impl { +template +struct chunk_schema_type_helper { + using Schema = typename chunk_schema_type_helper::Schema; +}; + +template +struct chunk_schema_type_helper { + using Schema = FixedArray; +}; +} + + +template +struct Chunk { + using InnerSchema = typename impl::chunk_schema_type_helper::Schema; +}; + +template +using SuperChunk = Array; +} +} +} + +namespace saw { +template +class data,Encode> final { +private: +public: +}; +} -- cgit v1.2.3