mlx3ds/include/mlx3ds_embeddedassets.h
Zy 09e319024d part: add mlx3ds_assets_get() and file embedding *
TODO: docs
also add tester for sdcard files
2024-10-10 23:25:15 +02:00

26 lines
423 B
C

/**
* mlx3ds_embeddedassets.h
* for the project "MinilibX for 3DS"
* by Zy
* at https://github.com/frzysk/mlx3ds
*/
// TODO docs
#ifndef MLX3DS_ASSETS_H
# define MLX3DS_ASSETS_H
# include <string.h>
// TODO docs
typedef struct s_embeddedasset
{
const char *name;
size_t size;
const char *data;
} t_embeddedasset;
// TODO docs
const t_embeddedasset *mlx3ds_assets_get(const char *name);
#endif