From c4ac81cffcf925963acb0c02584ab22626427a73 Mon Sep 17 00:00:00 2001 From: quou Date: Thu, 4 May 2023 10:15:19 +1000 Subject: Add an animation system. --- world.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'world.h') diff --git a/world.h b/world.h index 7dbcb4d..9871e9b 100644 --- a/world.h +++ b/world.h @@ -15,8 +15,9 @@ struct World { unsigned char bitmask[max_entities]; - CSprite sprites[max_entities]; + CSprite sprites [max_entities]; CPosition positions[max_entities]; + CAnimated animateds[max_entities]; Player player; }; -- cgit v1.2.3-54-g00ecf