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
7namespace Grindstone {
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}
Definition Asset.hpp:44
Definition EnvironmentMapComponent.hpp:8