#ifndef material_h #define material_h typedef struct { char magic[4]; float metalness, roughness; float ao; unsigned albedo; int albedo_tex_len; int ao_tex_len; int metal_tex_len; int rough_tex_len; int normal_tex_len; } Material_File; #endif