From be5c7263406aef867501c7965bcced6a7e2898a6 Mon Sep 17 00:00:00 2001 From: quou Date: Sun, 29 Sep 2024 16:39:31 +1000 Subject: animation, player movement, physics etc. --- asset.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'asset.c') diff --git a/asset.c b/asset.c index 78085ec..31a6d8c 100644 --- a/asset.c +++ b/asset.c @@ -8,3 +8,7 @@ const unsigned char* get_asset(Asset_ID id) { const struct Bitmap* get_bitmap(Asset_ID id) { return (const struct Bitmap*)get_asset(id); } + +const struct Animation* get_animation(Asset_ID id) { + return (const struct Animation*)get_asset(id); +} -- cgit v1.2.3-54-g00ecf