mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
25 lines
563 B
C
25 lines
563 B
C
/* $Id$ */
|
|
|
|
/** @file gfxinit.h Functions related to the graphics initialization. */
|
|
|
|
#ifndef GFXINIT_H
|
|
#define GFXINIT_H
|
|
|
|
#include "gfx_type.h"
|
|
|
|
void CheckExternalFiles();
|
|
void GfxLoadSprites();
|
|
void LoadSpritesIndexed(int file_index, uint *sprite_id, const SpriteID *index_tbl);
|
|
|
|
void FindGraphicsSets();
|
|
bool SetGraphicsSet(const char *name);
|
|
char *GetGraphicsSetsList(char *p, const char *last);
|
|
|
|
int GetNumGraphicsSets();
|
|
int GetIndexOfCurrentGraphicsSet();
|
|
const char *GetGraphicsSetName(int index);
|
|
|
|
extern char *_ini_graphics_set;
|
|
|
|
#endif /* GFXINIT_H */
|