summaryrefslogtreecommitdiff
path: root/src/include/gameui.h
blob: c9f607e1f6ee06a0cce52a306a957fc9448d115a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GAMEUI_H
#define GAMEUI_H
#include <SDL.h>

#include "data_ini.h"
#include "data_ress.h"
#include "data_game.h"

/* Create list of all in-game sprite to render (for batch processing) */
int buildRenderList(gameIni_t *gIni, gameRess_t *gRess, gameState_t *gState);
void disposeRenderList(gameState_t *gState);

#endif /*GAMEUI_H*/