Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
EnvironmentMapComponent.hpp
1
#pragma once
2
3
#include "EngineCore/Reflection/ComponentReflection.hpp"
4
#include "EngineCore/Assets/Textures/TextureAsset.hpp"
5
#include "EngineCore/ECS/Entity.hpp"
6
7
namespace
Grindstone {
8
struct
EnvironmentMapComponent
{
9
AssetReference<TextureAsset>
specularTexture;
10
11
REFLECT(
"EnvironmentMap"
)
12
};
13
14
void
SetupEnvironmentMapComponent(entt::registry&, entt::entity);
15
void
DestroyEnvironmentMapComponent(entt::registry&, entt::entity);
16
}
Grindstone::AssetReference
Definition
Asset.hpp:44
Grindstone::EnvironmentMapComponent
Definition
EnvironmentMapComponent.hpp:8
sources
code
EngineCore
CoreComponents
EnvironmentMap
EnvironmentMapComponent.hpp
Generated by
1.12.0