mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-15 05:14:20 +00:00
8 lines
138 B
Rust
8 lines
138 B
Rust
use super::Texture;
|
|
|
|
pub struct Material {
|
|
pub name: String,
|
|
pub diffuse_texture: Texture,
|
|
pub bind_group: wgpu::BindGroup,
|
|
}
|