#ifndef ASSETS_H #define ASSETS_H #include struct asset { void *data; size_t size; }; #define BIE_ENTRY(name, pos, size) extern struct asset name; #include "assets.idx" #undef BIE_ENTRY #endif // ASSETS_H