Files
wgpu-renderer/Source/Render/Material.rs
2021-11-08 12:17:40 -03:00

8 lines
138 B
Rust

use super::Texture;
pub struct Material {
pub name: String,
pub diffuse_texture: Texture,
pub bind_group: wgpu::BindGroup,
}