/* * Copyright (C) 2018 Tomasz Kramkowski * SPDX-License-Identifier: MIT */ #ifndef MTL_H #define MTL_H #include "gl.h" typedef int mtlidx; mtlidx mtl_load(char *name); void mtl_use(mtlidx mtl); #endif // MTL_H