local have bitset rendering

This commit is contained in:
Green Sky
2024-12-13 00:53:48 +01:00
parent f89aeae62b
commit 84ade4d683
7 changed files with 228 additions and 29 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <solanaceae/object_store/fwd.hpp>
#include "./texture_cache.hpp"
#include <optional>
class BitsetImageLoader {
public:
BitsetImageLoader(void);
std::optional<TextureEntry> load(TextureUploaderI& tu, ObjectHandle o);
};