This commit is contained in:
MihailRis
2024-02-26 01:27:27 +03:00
parent e06350915e
commit 925ef426de
6 changed files with 240 additions and 233 deletions
+5 -4
View File
@@ -15,18 +15,19 @@ class Content;
class ContentGfxCache;
class BlocksPreview {
public:
static ImageData* draw(
const ContentGfxCache* cache,
Framebuffer* framebuffer,
Batch3D* batch,
const Block* block,
int size);
int size
);
public:
static std::unique_ptr<Atlas> build(
const ContentGfxCache* cache,
Assets* assets,
const Content* content);
const Content* content
);
};
#endif // FRONTEND_BLOCKS_PREVIEW_H_