blob: 74cf66be720662c4c5609a5a28c16ceb258dcd84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef asset_h
#define asset_h
#define enum_only
#include "pack.h"
#undef enum_only
const unsigned char* get_asset(Asset_ID id);
const struct Bitmap* get_bitmap(Asset_ID id);
#endif
|