Claude Chappe' Curse - A C Game
Logo Institut d'Informatique Claude Chappe Logo Université de Le Mans Logo Raeptor Production
 
Loading...
Searching...
No Matches
mtl_loader.h
Go to the documentation of this file.
1#pragma once
2
54int load_mtl(char *path, char *filename, Material **materials);
55
80int find_material(Material *materials, int materialsCount, char *materialName);
81
int load_mtl(char *path, char *filename, Material **materials)
Loads material properties from a .mtl file and stores them in an array.
Definition mtl_loader.c:6
int find_material(Material *materials, int materialsCount, char *materialName)
Searches for a material by its name in a list of materials.
Definition mtl_loader.c:176
Structure representing a material with various properties.
Definition model.h:97