Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
TextureAsset.hpp
1#pragma once
2
3#include "Common/Graphics/Texture.hpp"
4#include "EngineCore/Assets/Asset.hpp"
5using namespace Grindstone::GraphicsAPI;
6
7namespace Grindstone {
8 struct TextureAsset : public Asset {
9 TextureAsset() = default;
10 TextureAsset(Uuid uuid, std::string_view name, Texture* texture) : Asset(uuid, name), texture(texture) {}
11 Texture* texture = nullptr;
12
13 DEFINE_ASSET_TYPE("Texture", AssetType::Texture)
14 };
15}
Definition Texture.hpp:40
Definition Uuid.hpp:6
Definition Asset.hpp:18
Definition TextureAsset.hpp:8