mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-16 18:15:58 -05:00
25 lines
532 B
C
25 lines
532 B
C
#ifndef GUARD_DEF_FILEARCHIVES_H
|
|
#define GUARD_DEF_FILEARCHIVES_H
|
|
|
|
#include "structs/str_file_system.h"
|
|
|
|
// dungeon_sbin.s
|
|
extern const FileArchive gDungeonFileArchive;
|
|
|
|
// effect_sbin.s
|
|
extern const FileArchive gEffectFileArchive;
|
|
|
|
// monster_sbin.c
|
|
extern const FileArchive gMonsterFileArchive;
|
|
|
|
// ornament_sbin.s
|
|
extern const FileArchive gOrnamentFileArchive;
|
|
|
|
// system_sbin.s
|
|
extern const FileArchive gSystemFileArchive;
|
|
|
|
// titlemenu_sbin.s
|
|
extern const FileArchive gTitleMenuFileArchive;
|
|
|
|
#endif // GUARD_DEF_FILEARCHIVES_H
|