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"
5
using namespace
Grindstone::GraphicsAPI;
6
7
namespace
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
}
Grindstone::GraphicsAPI::Texture
Definition
Texture.hpp:40
Grindstone::Uuid
Definition
Uuid.hpp:6
Grindstone::Asset
Definition
Asset.hpp:18
Grindstone::TextureAsset
Definition
TextureAsset.hpp:8
sources
code
EngineCore
Assets
Textures
TextureAsset.hpp
Generated by
1.12.0