mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
915a09e4c6
-Feature: make configuring the to-be-used base graphics via openttd.cfg and the command line possible. -Feature: allow both the German as well as non-German toyland graphics as "correct" and official graphics. -Feature: allow people to create their own base graphics easily and without requiring code changes.
21 lines
460 B
C
21 lines
460 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);
|
|
|
|
extern char _ini_graphics_set[32];
|
|
|
|
#endif /* GFXINIT_H */
|