mirror of
https://github.com/pret/pokeemerald.git
synced 2026-09-26 12:42:56 -04:00
19 lines
505 B
C
19 lines
505 B
C
#ifndef GUARD_tilesets_H
|
|
#define GUARD_tilesets_H
|
|
|
|
extern const u32 gTilesetTiles_General[];
|
|
extern const u16 gTilesetPalettes_General[][16];
|
|
|
|
#if EUROPE
|
|
extern const u32 gTilesetTiles_Shop[];
|
|
extern const u16 gTilesetPalettes_Shop[][16];
|
|
|
|
extern const u32 gTilesetTiles_BattleDome[];
|
|
extern const u16 gTilesetPalettes_BattleDome[][16];
|
|
#endif
|
|
|
|
extern const struct Tileset *const gTilesetPointer_SecretBase;
|
|
extern const struct Tileset *const gTilesetPointer_SecretBaseRedCave;
|
|
|
|
#endif //GUARD_tilesets_H
|