#ifndef ASSETS_H #define ASSETS_H #include // size_t #include // uint8_t typedef enum { ASSET_SPRITES_PNG, ASSET_ROBOTO_TTF, ASSET_LAST, } asset_id_t; typedef struct { const uint8_t * const buf; size_t len; } asset_t; const asset_t *asset_get(const asset_id_t); #endif /* ASSETS_H */