aboutsummaryrefslogtreecommitdiff
path: root/asset.h
blob: 68a1e0b92142e50487db634a85344baa53660c0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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