mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 21:25:42 -05:00
17 lines
491 B
C
17 lines
491 B
C
#ifndef GUARD_TILESETS_H
|
|
#define GUARD_TILESETS_H
|
|
|
|
extern const u32 gTilesetTiles_General[];
|
|
extern const u16 gTilesetPalettes_General[][16];
|
|
|
|
extern const u32 gTilesetTiles_GenericBuilding1[];
|
|
extern const u16 gTilesetPalettes_GenericBuilding1[][16];
|
|
|
|
extern const u32 gTilesetTiles_DepartmentStore[];
|
|
extern const u16 gTilesetPalettes_DepartmentStore[][16];
|
|
|
|
extern const struct Tileset gTileset_Building;
|
|
extern const struct Tileset gTileset_GenericBuilding1;
|
|
|
|
#endif // GUARD_TILESETS_H
|