Files
Z3D/include/opengl/metadata/material_metadata.hpp
2025-03-27 19:47:32 +01:00

19 lines
366 B
C++

#pragma once
#include "opengl/handles/texture_handle.hpp"
namespace zgl
{
struct material_metadata
{
texture_handle ambient_color_texture_handle;
texture_handle diffuse_color_texture_handle;
texture_handle specular_color_texture_handle;
texture_handle shininess_texture_handle;
texture_handle alpha_texture_handle;
texture_handle bump_texture_handle;
};
}