GBAlatro
A Demake of Balatro for the GBA
Loading...
Searching...
No Matches
item_funcs.h
Go to the documentation of this file.
1
9#ifndef ITEM_FUNCS_H
10#define ITEM_FUNCS_H
11
12#include "item.h"
13
24ItemFuncs* get_item_type_funcs(enum ItemType type);
25
26#endif // ITEM_FUNCS_H
The core structure for items in the shop and inventory. Provides a common API for the shop and invent...
ItemFuncs * get_item_type_funcs(enum ItemType type)
Returns the function table for a given item type.
Definition item_funcs.c:39
The set of functions that each item type implements.
Definition item.h:94