mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 16:36:15 +03:00
15 lines
402 B
C++
15 lines
402 B
C++
#pragma once
|
|
|
|
#include <engine.h>
|
|
#include <graphics/context.h>
|
|
|
|
struct EditorBuiltinResource : engine::NonCopyable
|
|
{
|
|
explicit EditorBuiltinResource();
|
|
|
|
std::unique_ptr<engine::VulkanImage> folderImage;
|
|
std::unique_ptr<engine::VulkanImage> fileImage;
|
|
std::unique_ptr<engine::VulkanImage> pawnImage;
|
|
std::unique_ptr<engine::VulkanImage> sunImage;
|
|
std::unique_ptr<engine::VulkanImage> postImage;
|
|
}; |