mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-10 08:00:05 +00:00
15 lines
305 B
C
15 lines
305 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);
|
|
|
|
#endif /* GFXINIT_H */
|