2005-08-14 18:10:18 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file gfxinit.h Functions related to the graphics initialization. */
|
2007-03-01 01:24:44 +00:00
|
|
|
|
2005-08-14 18:10:18 +00:00
|
|
|
#ifndef GFXINIT_H
|
|
|
|
#define GFXINIT_H
|
|
|
|
|
2007-12-23 10:56:02 +00:00
|
|
|
#include "gfx_type.h"
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void CheckExternalFiles();
|
|
|
|
void GfxLoadSprites();
|
2007-10-20 21:39:50 +00:00
|
|
|
void LoadSpritesIndexed(int file_index, uint *sprite_id, const SpriteID *index_tbl);
|
2005-08-14 18:10:18 +00:00
|
|
|
|
2008-08-24 08:41:38 +00:00
|
|
|
void FindGraphicsSets();
|
|
|
|
bool SetGraphicsSet(const char *name);
|
|
|
|
char *GetGraphicsSetsList(char *p, const char *last);
|
|
|
|
|
2008-08-31 08:46:43 +00:00
|
|
|
extern char _ini_graphics_set[32];
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* GFXINIT_H */
|