Rename def files

This commit is contained in:
Rickey Fehr
2025-10-18 17:28:35 -07:00
parent a5c5f9cb15
commit af3d69bcfb
4 changed files with 2 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "sprite.h"
#include "joker.h"
#include "card.h"
POOL_ENTRY(Sprite, MAX_SPRITES);
POOL_ENTRY(SpriteObject, MAX_SPRITE_OBJECTS);
POOL_ENTRY(Joker, MAX_ACTIVE_JOKERS);
POOL_ENTRY(JokerObject, MAX_ACTIVE_JOKERS);
POOL_ENTRY(Card, MAX_CARDS);
POOL_ENTRY(CardObject, MAX_CARDS_ON_SCREEN);