You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
222 B
16 lines
222 B
#include "base.h"
|
|
|
|
typedef struct {
|
|
U32 grid_index;
|
|
U8 size;
|
|
} Bank_entry;
|
|
|
|
typedef struct {
|
|
char* data;
|
|
Usz capacity;
|
|
} Bank;
|
|
|
|
typedef char* Bank_cursor;
|
|
|
|
void bank_init(Bank* bank);
|
|
void bank_deinit(Bank* bank);
|
|
|