#ifndef asset_h #define asset_h #include "render.h" #define bitmap_asset_count 1 typedef enum { asset_id_usr = 0, asset_count } Asset_ID; void load_assets(); const Bitmap* get_bitmap(Asset_ID id); #endif